-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "threeplot",
"version": "0.7.2",
"description": "programmatically create 3d plots with threejs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"targets": {
"types": false,
"main": false
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"url": "https://github.com/marnec/threeplot"
},
"funding": {
"type": "patreon",
"url": "https://patreon.com/marnec"
},
"scripts": {
"dev:lib": "npm run clear:lib && npx tsc --watch",
"dev:e2e": "mkdir -p docs && npm run clear:e2e && npx parcel test/e2e/index.html --dist-dir=docs",
"dev:test": "npm run test -- -w",
"test": "vitest",
"build:test": "npm run test -- --run",
"build": "npm run build:lib && npm run clear:e2e && npm run build:docs",
"build:lib": "npm run clear:lib && npx tsc",
"build:docs": "mkdir -p docs && npx parcel build test/e2e/index.html --dist-dir=docs --public-url https://marnec.github.io/threeplot/",
"clear:e2e": "rm -f docs/*.js && rm -f docs/*.html && rm -f docs/*.css && rm -f docs/*.map",
"clear:lib": "rm -rf dist/*"
},
"alias": {
"three": "./node_modules/three"
},
"files": [
"dist/"
],
"dependencies": {
"troika-three-text": "0.49",
"zod": "3.22.4"
},
"peerDependencies": {
"three": "0.158.0"
},
"devDependencies": {
"@types/three": "0.158.2",
"parcel": "^2.10.3",
"process": "^0.11.10",
"ts-node": "^10.9.1",
"typescript": "5.2.2",
"vitest": "^0.34.6"
}
}