-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 985 Bytes
/
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
{
"name": "jsx-autodocs",
"version": "0.6.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": {
"name": "Luigui Delyer @ 2024",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/luiguild/jsx-autodocs"
},
"type": "module",
"files": ["dist"],
"private": false,
"scripts": {
"build": "tsc -b && cp ./README.md ./dist/README.md",
"watch": "tsc --watch",
"tsx:basic": "tsx ./examples/basic.ts",
"tsx:vite": "tsx ./examples/vite.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/ts-expose-internals": "npm:[email protected]",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsx": "^4.19.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}