-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 809 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 809 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
33
34
35
{
"name": "iongraph-web",
"version": "0.1.16",
"author": "Ben Visness",
"repository": {
"type": "git",
"url": "https://github.com/bvisness/iongraph-web.git"
},
"license": "MPL-2.0",
"type": "module",
"exports": {
".": "./dist/index.js",
"./react": "./dist/index-react.js",
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"build-all": "npm run build-package && npm run build-www",
"build-package": "node build-package.mjs",
"build-www": "node build-www.mjs",
"serve": "node build-www.mjs --serve"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"esbuild": "^0.25.8",
"typescript": "^5.9.2"
}
}