-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.38 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": "inkspire",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run install-missing-dependencies && npm run build && node server/server.js",
"dev": "concurrently \"webpack --config webpack.config.js --watch\" \"node server/server.js\"",
"install-missing-dependencies": "npm i",
"build": "webpack --config webpack.config.js",
"serve": "live-server --cors --host=0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IC3lemon/inkspire.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IC3lemon/inkspire/issues"
},
"homepage": "https://github.com/IC3lemon/inkspire#readme",
"description": "",
"dependencies": {
"@types/node": "^24.0.4",
"@webgpu/types": "^0.1.61",
"express": "^4.18.2",
"gifenc": "^1.0.3",
"gl-matrix": "^3.4.3",
"http-server": "^14.1.1",
"jquery": "^3.7.1",
"jszip": "^3.10.1",
"mp4-muxer": "^5.2.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"ts-loader": "^9.5.2",
"ts-shader-loader": "^2.0.2",
"typescript": "^5.8.3",
"webm-muxer": "^5.1.4",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"@types/jquery": "^3.5.32",
"concurrently": "^8.2.2",
"live-server": "^1.2.2"
}
}