-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "tmp3d",
"version": "0.0.7.1",
"description": "A 3-D software renderer written from scratch in nothing but JavaScript",
"main": "./tools/server.js",
"scripts": {
"check": "tsc --noEmit",
"start": "node ./tools/server.js",
"start:debug": "DEBUG=1 node ./tools/server.js",
"watch": "./node_modules/nodemon/bin/nodemon.js ./tools/watch.js",
"watch:debug": "DEBUG=1 ./node_modules/nodemon/bin/nodemon.js ./tools/watch.js",
"build": "node ./tools/build.js -v",
"build:debug": "node ./tools/build.js -d -v",
"load-obj": "node ./tools/obj.js convert"
},
"repository": {
"type": "git"
},
"keywords": [
"rendering engine",
"3-D graphics",
"software renderer",
"software rasterizer",
"canvas",
"html5"
],
"author": "Emre Akı",
"license": "GPL-3.0-or-later",
"devDependencies": {
"commander": "^11.0.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
}
}