-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.16 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
{
"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 --file alanStdBundle.js"
},
"type": "module",
"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": "^10.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.x",
"@types/uuid": "^10.0.0",
"http-server": "^14.1.1",
"playwright": "^1.48.1",
"rollup": "4.x"
}
}