-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 800 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 800 Bytes
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
{
"name": "@saltcorn/react-lib",
"version": "0.0.1-beta.7",
"description": "Helpers for Saltcorn React components",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"docs": "typedoc --options typedoc_cfg.json"
},
"peerDependencies": {
"react": "^19.0.0"
},
"author": "Christian Hugo",
"license": "MIT",
"repository": "github:saltcorn/react-lib",
"exports": {
".": "./dist/index.js",
"./hooks": "./dist/hooks.js",
"./api": "./dist/api.js",
"./components": "./dist/components/index.js"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"ts-node": "^10.9.2",
"typescript": "5.9.2",
"typedoc": "^0.28.5"
}
}