-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.89 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.89 KB
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
{
"name": "noneos",
"version": "3.2.15",
"description": "A browser-based operating system",
"type": "module",
"scripts": {
"static": "node scripts/static-server",
"start": "npm run static & node scripts/hand1.js --port=18290 --name=node-hand-server & bun scripts/hand2.js --port=18291 --name=bun-hand-server",
"dev": "npm run static & npm run node-dev & npm run bun-dev",
"node-dev": "node --inspect scripts/hand1.js --port=18290 --name=node-hand-server",
"bun-dev": "bun --inspect scripts/hand2.js --port=18291 --name=bun-hand-server",
"update-test": "node scripts/update-test.js && node scripts/generate-specs.js",
"test": "npx playwright test",
"bu": "npm run build-sw && npm run build-sw-min && npm run build-server && npm run buhash && npm run zippkg && npm run update-test",
"zippkg": "node scripts/zipPackages.js",
"buhash": "node scripts/calculateHashes.js",
"build-sw": "rollup sw/main.js --file sw/dist.js --format iife",
"build-sw-min": "rollup sw/main.js --file sw/dist.min.js --format iife --plugin terser",
"build-server": "rollup server/src/index.js --file server/dist/index.js --sourcemap",
"hand": "nodemon --inspect server/test-server.js",
"ci-test": "node scripts/ci-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirakiray/NoneOS.git"
},
"author": "Yao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kirakiray/NoneOS/issues"
},
"homepage": "https://github.com/kirakiray/NoneOS#readme",
"devDependencies": {
"@playwright/test": "^1.50.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.13.9",
"jszip": "^3.10.1",
"koa": "^2.15.3",
"koa-static": "^5.0.0",
"noneos-handshake": "^0.3.0",
"rollup": "^4.35.0",
"shelljs": "^0.10.0",
"ws": "^8.18.2",
"level": "^10.0.0"
},
"dependencies": {
"crossway": "^1.0.0"
}
}