-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "turtle-graphics",
"version": "3",
"description": "",
"private": true,
"scripts": {
"build": "rollup -c && cp -Rf static/ dist && npm run build-docs && ./make_version_folder.sh",
"watch": "rollup -cw --watch.onEnd 'npm run build-docs'",
"browsersync": "browser-sync . --port 8080 --no-notify --files *.html,dist --startPath html/",
"start": "concurrently 'npm run watch' 'npm run browsersync'",
"test": "tap",
"build-docs": "jsdoc -c jsdoc.config.json tg.mjs",
"docs": "npm run build-docs"
},
"keywords": [],
"author": "Martin Grödl <martin@process.studio> (https://process.studio)",
"license": "AGPL-3.0",
"engines": {
"node": "^20.17.0",
"npm": "^10.8.3"
},
"dependencies": {
"concurrently": "^9.0.1",
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"browser-sync": "^3.0.2",
"jsdoc": "^4.0.3",
"p5": "^1.10.0",
"rollup": "^4.22.2",
"tap": "^16.3.10"
}
}