-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.49 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
94
95
{
"name": "three-inspect",
"version": "0.7.2",
"type": "module",
"description": "An inspector and debugger for Three.js",
"keywords": [
"three",
"three.js",
"3d",
"inspect",
"debug",
"webgl",
"monitoring",
"threlte",
"r3f"
],
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./vanilla": {
"types": "./dist/inspector.d.ts",
"import": "./dist/inspector.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/threlte/three-inspect.git"
},
"license": "MIT",
"scripts": {
"start": "vite --host --open",
"dev": "vite --host --open",
"build": "vite build && npm run package",
"package": "svelte-kit sync && svelte-package && npm run package:vanilla && publint",
"package:vanilla": "vite build --config vite.lib.config.ts && tsc --project tsconfig.lib.json --emitDeclarationOnly",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:format": "prettier --check .",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint ./src",
"format": "prettier --write .",
"prettier": "prettier --check \"**/*.{ts,svelte}\"",
"preview": "vite preview --host",
"typecheck": "tsc --noEmit",
"release": "changeset publish"
},
"peerDependencies": {
"three": ">=0.140"
},
"dependencies": {
"@floating-ui/dom": "^1.6.6",
"@mdi/js": "^7.4.47",
"@threlte/core": "^7.3.1",
"@threlte/extras": "^8.11.4",
"camera-controls": "^2.8.5",
"flexible-tree": "^0.1.6",
"svelte": "^4.2.18",
"svelte-tweakpane-ui": "^1.3.0",
"three-perf": "^1.0.10"
},
"devDependencies": {
"@changesets/cli": "^2.27.6",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/package": "^2.3.2",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/three": "^0.165.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.41.0",
"eslint-plugin-unicorn": "^54.0.0",
"postcss": "^8.4.39",
"postprocessing": "^6.35.5",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"publint": "^0.2.8",
"simplex-noise": "^4.0.1",
"svelte-check": "^3.8.4",
"tailwindcss": "^3.4.4",
"three": "^0.165.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.3.2",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-glsl": "^1.3.0"
}
}