-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "@tari-project/tari-tower",
"version": "0.0.9",
"private": false,
"description": "the tower animation used in Tari Universe",
"homepage": "https://github.com/tari-project/tari-tower#readme",
"bugs": {
"url": "https://github.com/tari-project/tari-tower/issues"
},
"author": "",
"license": "ISC",
"type": "module",
"exports": {
".": {
"assets": "./public/assets/",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/public"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.lib.json && vite build",
"build:watch": "tsc --p ./tsconfig.lib.json && vite build -w",
"preview": "vite preview",
"lint": "eslint lib"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@nabla/vite-plugin-eslint": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.12.0",
"@types/three": "^0.172.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"lil-gui": "^0.20.0",
"min-signal": "^1.0.2",
"prettier": "3.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"min-signal": "^1.0.2",
"three": "^0.172.0"
},
"publishConfig": {
"access": "public"
}
}