-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "alan_std",
"version": "0.2.0",
"description": "The Alan Language standard library backing for Javascript",
"main": "alan_std.js",
"scripts": {
"test": "node alan_std.test.js",
"test-gpgpu": "node alan_std.test_gpgpu.js",
"start-server": "bash -c 'http-server &\necho $! > ./http-server.pid'",
"stop-server": "bash -c 'kill `cat ./http-server.pid`\n rm ./http-server.pid'",
"chrome-console": "node chrome_console.js",
"bundle": "npx rollup alan_std.js --name alanStdBundle -p @rollup/plugin-node-resolve -p @rollup/plugin-terser --file alanStdBundle.js",
"wasm-compiler": "cd web_compiler && wasm-pack build -t web --release"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alantech/alan.git"
},
"keywords": [
"alan",
"std",
"gpgpu",
"webgpu"
],
"author": "David Ellis <isv.damocles@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alantech/alan/issues"
},
"homepage": "https://github.com/alantech/alan#readme",
"dependencies": {
"uuid": "^14.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.x",
"@rollup/plugin-terser": "^0.4.4",
"@types/uuid": "^10.0.0",
"http-server": "^14.1.1",
"playwright": "^1.58.2",
"rollup": "4.x"
}
}