-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.46 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@opensystemslab/buildx-core",
"version": "0.8.1-canary.9",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./worker-utils": {
"import": "./dist/worker-utils.mjs",
"require": "./dist/worker-utils.cjs",
"types": "./dist/worker-utils.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"build": "npm run clean && tsc && vite build",
"build-examples": "npm run clean && tsc && vite build --mode examples",
"preview": "vite preview",
"prepare": "npm run build",
"test": "vitest",
"slides": "npx @marp-team/marp-cli@latest -s ./slides"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theopensystemslab/buildx-core.git"
},
"license": "MPL-2.0",
"homepage": "https://github.com/theopensystemslab/buildx-core",
"bugs": {
"url": "https://github.com/theopensystemslab/buildx-core/issues"
},
"dependencies": {
"@speckle/objectloader": "^2.19.6",
"@turf/turf": "^7.0.0",
"@use-gesture/vanilla": "^10.3.1",
"airtable": "^0.12.2",
"buffer": "^6.0.3",
"camera-controls": "^2.8.5",
"core-js": "^3.37.1",
"d3-dsv": "^3.0.1",
"dat.gui": "^0.7.9",
"deep-equal": "^2.2.3",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"fp-ts": "^2.16.8",
"fp-ts-std": "^0.18.0",
"glob": "^10.4.5",
"graphql-request": "^6.1.0",
"immer": "^10.1.1",
"js-base64": "^3.7.7",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"nanoid": "^5.0.7",
"pako": "^2.1.0",
"suspend-react": "^0.1.3",
"three-bvh-csg": "^0.0.16",
"three-mesh-bvh": "^0.8.3",
"three-stdlib": "^2.30.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/d3-dsv": "^3.0.7",
"@types/dat.gui": "^0.7.13",
"@types/geojson": "^7946.0.14",
"@types/node": "^20.14.10",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.163.0",
"@vitejs/plugin-react": "^4.3.1",
"rimraf": "^6.0.1",
"terser": "^5.31.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-dts": "4.0.0-beta.1",
"vitest": "^2.0.4"
},
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1",
"three": ">=0.163.0"
}
}