-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·66 lines (66 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "three-fatline",
"version": "0.7.1",
"description": "A ThreeJS Line object with variable width",
"type": "module",
"unpkg": "dist/three-fatline.min.js",
"main": "dist/three-fatline.mjs",
"module": "dist/three-fatline.mjs",
"types": "dist/three-fatline.d.ts",
"exports": {
"types": "./dist/three-fatline.d.ts",
"umd": "./dist/three-fatline.min.js",
"default": "./dist/three-fatline.mjs"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/three-fatline.git"
},
"homepage": "https://github.com/vasturiano/three-fatline",
"keywords": [
"3d",
"line",
"width",
"webgl",
"three"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/three-fatline/issues"
},
"files": [
"dist/**/*",
"example/**/*"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"dependencies": {},
"peerDependencies": {
"three": ">=0.154.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/three": ">=0.154.0",
"rimraf": "^6.0.1",
"rollup": "^4.22.5",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=12"
}
}