-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.32 KB
/
package.json
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
{
"name": "webgpu.rocks",
"version": "0.4.5",
"license": "MIT",
"description": "WebGPU resources and quick reference",
"author": {
"name": "Ralph Wiedemeier",
"email": "[email protected]"
},
"homepage": "https://github.com/framefactory/webgpu.rocks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/framefactory/webgpu.rocks.git"
},
"bugs": {
"url": "https://github.com/framefactory/webgpu.rocks/issues"
},
"packageManager": "[email protected]",
"main": "bin/index.js",
"scripts": {
"start": "tsc && node bin/index.js",
"deploy": "scp -r public/* hostpoint:~/www/webgpu.rocks",
"build": "tsc && node bin/index.js && rm -rf public/* && hugo",
"build:generator": "tsc",
"build:site": "rm -rf public/* && hugo",
"dev": "tsc && node bin/index.js && hugo server --disableFastRender --noHTTPCache",
"dev:site": "hugo server --disableFastRender --noHTTPCache",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.2",
"mkdirp": "^3.0.1",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/node": "^20.8.2",
"@types/webidl2": "^24.4.1",
"bikeshed-to-ts": "github:toji/bikeshed-to-ts",
"typescript": "^5.2.2",
"webidl2": "^24.4.1"
}
}