-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
104 lines (104 loc) · 2.68 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
96
97
98
99
100
101
102
103
104
{
"name": "@tresjs/nuxt",
"type": "module",
"version": "3.0.7",
"packageManager": "[email protected]",
"description": "TresJS integration for Nuxt.",
"author": "Daniel Roe (https://github.com/danielroe/)",
"license": "MIT",
"homepage": "https://tresjs.org",
"repository": {
"type": "git",
"url": "git+https://github.com/tresjs/nuxt.git"
},
"bugs": {
"url": "https://github.com/tresjs/nuxt/issues"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"default": "./dist/module.mjs"
}
},
"main": "dist/module.mjs",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "npm run module:build && npm run client:build",
"module:build": "nuxt-module-build prepare && nuxt-module-build build",
"client:build": "nuxt prepare client && nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "release-it",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"peerDependencies": {
"three": ">=0.133"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.4.1",
"@nuxt/kit": "^3.13.1",
"@nuxt/ui": "^2.18.4",
"@tresjs/core": "4.2.10",
"@tresjs/nuxt": "3.0.7",
"@types/three": "^0.168.0",
"@unocss/nuxt": "^0.62.3",
"defu": "^6.1.4",
"mlly": "^1.7.1",
"pkg-types": "^1.2.0",
"sirv": "^2.0.4",
"typescript": "^5.5.4",
"vite-plugin-glsl": "^1.3.0"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.1",
"@iconify-json/file-icons": "^1.2.0",
"@iconify-json/iconoir": "^1.2.0",
"@iconify-json/ph": "^1.2.0",
"@nuxt/devtools-ui-kit": "^1.4.1",
"@nuxt/eslint-config": "^0.5.6",
"@nuxt/icon": "^1.5.1",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@nuxt/test-utils": "^3.14.1",
"@release-it/conventional-changelog": "^8.0.1",
"@tresjs/eslint-config": "^1.2.0",
"@types/node": "^22.5.4",
"changelogen": "^0.5.5",
"eslint": "^9.9.1",
"nuxt": "^3.13.1",
"playwright": "^1.47.0",
"release-it": "^17.6.0",
"three": "^0.168.0",
"vitest": "^2.0.5"
},
"build": {
"externals": [
"node:child_process",
"vite-plugin-glsl",
"@rollup/pluginutils",
"vite",
"esbuild",
"rollup",
"estree-walker",
"picomatch",
"postcss",
"lightningcss",
"fsevents",
"pnpapi",
"picocolors",
"source-map-js",
"nanoid/non-secure"
]
}
}