-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.08 KB
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
42
43
44
45
46
47
48
{
"name": "computer-graphics",
"version": "0.2.2",
"description": "CPU-based computer graphics playground for JS: 2D/3D transforms, ImageData, simple projection.",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build"
},
"keywords": [
"computer-graphics",
"javascript",
"2d",
"3d",
"transforms",
"projection"
],
"author": "Mert Ulas",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MERTULAS/Computer_Graphics_in_JS.git"
},
"bugs": {
"url": "https://github.com/MERTULAS/Computer_Graphics_in_JS/issues"
},
"homepage": "https://github.com/MERTULAS/Computer_Graphics_in_JS#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"computer-graphics": "^0.2.1",
"lil-gui": "^0.20.0",
"vite": "^6.3.5"
}
}