-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 987 Bytes
/
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
{
"name": "screamer-lang",
"version": "1.1.0",
"description": "A domain-specific language for live coding performances using ray marching",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"grammar": "npx peggy screamer.pegjs -o screamer-lang.js -e walking --format globals",
"build": "node_modules/.bin/rollup ./playground/main.js -o playground/editor.bundle.js -p @rollup/plugin-node-resolve -p @rollup/plugin-commonjs -p @rollup/plugin-json"
},
"keywords": [
"live",
"coding",
"ray",
"marching",
"graphics",
"performance"
],
"author": "Charlie Roberts",
"license": "MIT",
"dependencies": {
"marching": "^1.1.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"cm6-theme-basic-dark": "^0.2.0",
"codemirror": "^6.0.1",
"peggy": "^4.0.2",
"rollup": "^3.28.1"
}
}