-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
88 lines (88 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "remark-typescript-tools",
"author": "Lenz Weber-Tronic",
"version": "2.0.0-alpha.0",
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/phryneas/remark-typescript-tools.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "yarn tsx --test test/linkDocblocks.test.ts",
"lint": "true",
"prepare": "yarn build"
},
"_husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/index.js",
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"husky": "^9.1.5",
"release-it": "^17.6.0",
"remark-mdx": "^3.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"tslib": "^2.7.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"unified": "^11.0.5"
},
"dependencies": {
"@microsoft/tsdoc": "^0.15.0",
"@prettier/sync": "^0.5.2",
"@types/estree": "^1.0.5",
"@types/unist": "^3.0.3",
"mdast-util-mdx-jsx": "^3.1.3",
"mdast-util-mdxjs-esm": "^2.0.1",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"unist-util-flatmap": "^1.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"packageManager": "[email protected]",
"peerDependencies": {
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"sideEffects": false
}