-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 740 Bytes
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
{
"name": "algorithmic-visual-evolution",
"version": "1.0.0",
"description": "A modular algorithmic visual evolution system.",
"main": "app.js",
"scripts": {
"dev": "live-server",
"dev:js": "node switch-version.js js",
"dev:ts": "node switch-version.js ts",
"dev:regl": "npx tsc src/app.ts --outDir regl_dist --module esnext --target es6 --moduleResolution node && live-server index.regl.html",
"switch": "node switch-version.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.14.9",
"live-server": "^1.2.1",
"typescript": "^5.3.3"
},
"dependencies": {
"regl": "^2.1.1"
}
}