-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 743 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
{
"name": "neurite",
"version": "1.0.0",
"type": "module",
"description": "fractal mind map",
"scripts": {
"start": "vite",
"start:host": "vite --host",
"build": "vite build && npm run wiki:build",
"wiki:build": "node ./wiki/generator/build.js",
"wiki:watch": "node ./wiki/generator/watch.js",
"postbuild": "shx cp -r js dist/js && shx cp -r resources dist/resources && shx cp -r wiki dist/wiki"
},
"keywords": [],
"author": "satellitecomponent",
"license": "ISC",
"devDependencies": {
"vite": "^6.1.1",
"shx": "^0.3.3",
"chokidar": "^4.0.3",
"marked": "^15.0.11"
},
"dependencies": {},
"overrides": {
"glob": "^11.0.1",
"vite": {
"esbuild": "^0.25.0"
}
}
}