-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "solid-three",
"version": "0.2.0",
"description": "SolidJS bindings for ThreeJS",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-three.git"
},
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**",
"types/**",
"README.md"
],
"scripts": {
"test": "vitest",
"build:lib": "BUILD_MODE=lib vite build",
"build": "vite build",
"types": "tsc --emitDeclarationOnly --declarationDir types",
"dev": "vite",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs.js"
}
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/three": "0.149.0",
"@vinxi/tsconfig": "0.0.3",
"esbuild": "^0.16.16",
"esbuild-register": "^3.4.2",
"remark-gfm": "^3.0.1",
"rollup": "^3.9.1",
"rollup-plugin-dts": "^5.1.1",
"solid-app-router": "^0.1.14",
"solid-js": "^1.7.0",
"three": "0.149.0",
"tsm": "^2.3.0",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "4.1.1",
"vite-plugin-inspect": "0.7.14",
"vite-plugin-solid": "2.5.0"
},
"peerDependencies": {
"solid-js": "*",
"three": "*"
},
"jest": {
"preset": "scripts/jest/node"
},
"dependencies": {
"@types/three": "0.149.0",
"zustand": "^3.7.2"
},
"packageManager": "pnpm@7.26.0"
}