-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.19 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "projection-3d-2d",
"version": "2.0.8",
"description": "Project (transform) point coordinates from 3D to 2D and unproject it back.",
"main": "index.js",
"scripts": {
"test": "mocha --exit test/test.js",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Infl1ght/projection-3d-2d.git"
},
"author": "Ilya Volkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Infl1ght/projection-3d-2d/issues"
},
"homepage": "https://github.com/Infl1ght/projection-3d-2d#readme",
"dependencies": {
"ml-matrix": "5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"babel-loader": "^8.2.2",
"mocha": "^9.1.3",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
},
"directories": {
"test": "test"
},
"keywords": [
"projection",
"unprojection",
"transformation",
"projection matrix",
"perspective projection",
"camera matrix",
"perspective",
"2d",
"3d",
"perspective projection matrix",
"3d to 2d"
],
"types": "main.d.ts",
"prepublishOnly": "webpack --mode=production"
}