forked from ifagian/graph3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 866 Bytes
/
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
{
"name": "graph3D",
"version": "1.0.0",
"description": "Módulo de graficado 3D para el lenguaje de programación funcional MateFun",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"lint": "eslint src/* --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.7.20",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^4.9.0"
},
"dependencies": {
"earcut": "^2.2.4",
"three": "^0.140.0"
}
}