-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "@tresjs/nuxt",
"type": "module",
"version": "1.1.7",
"packageManager": "[email protected]",
"description": "TresJS integration for Nuxt.",
"author": "Daniel Roe (https://github.com/danielroe/)",
"license": "MIT",
"repository": "@tresjs/nuxt",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "release-it",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.7.1",
"@tresjs/cientos": "3.3.0",
"@tresjs/core": "3.2.2",
"@types/three": "^0.156.0",
"mlly": "^1.4.2",
"pkg-types": "^1.0.3",
"three": "^0.156.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@alvarosabu/eslint-config-vue": "^0.4.0",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.1",
"@nuxt/schema": "^3.7.1",
"@nuxt/test-utils": "^3.7.1",
"@release-it/conventional-changelog": "^7.0.1",
"@types/node": "^20.6.0",
"changelogen": "^0.5.5",
"eslint": "^8.49.0",
"nuxt": "^3.7.1",
"playwright": "^1.37.1",
"release-it": "^16.1.5",
"vitest": "^0.34.4"
}
}