-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
50
51
52
53
{
"name": "three.path",
"version": "1.1.0",
"description": "three.path is an extension for three.js that facilitates the creation of 3D path geometries.",
"type": "module",
"main": "./build/three.path.js",
"module": "./build/three.path.module.js",
"exports": {
".": "./build/three.path.module.js",
"./src/*": "./src/*"
},
"repository": {
"type": "git",
"url": "https://github.com/shawn0326/three.path.git"
},
"files": [
"build",
"package.json",
"README.md",
"src"
],
"keywords": [
"three.js",
"three",
"path",
"geometry",
"3d",
"3d path",
"3d path geometry"
],
"author": "shawn0326",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-import": "^2.29.1",
"rollup": "^4.17.2"
},
"peerDependencies": {
"three": "0.x.x"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"b": "rollup -c",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
}
}