-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1021 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1021 Bytes
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
{
"name": "@ethic/emblem",
"version": "0.1.1",
"module": "dist/emblem.mjs",
"types": "dist/Emblem.d.ts",
"scripts": {
"prepare": "npm run build",
"start": "vite dev",
"build": "vite build",
"postbuild": "tsc --project tsconfig.build.json --emitDeclarationOnly",
"build:site": "EAI_EXPORT_SITE=1 vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthicAlly-Initiative/emblem.git"
},
"homepage": "https://github.com/EthicAlly-Initiative/emblem#readme",
"author": "Flynn <dev@flyn.ca>",
"license": "MIT",
"description": "",
"dependencies": {
"@react-three/drei": "^10.5.1",
"@react-three/fiber": "^9.2.0",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"three": "^0.178.0"
},
"files": [
"readme.md",
"dist/"
],
"devDependencies": {
"@types/node": "^24.2.1",
"@types/react-dom": "^19.1.6",
"@types/three": "^0.178.1",
"html-to-image": "^1.11.13",
"typescript": "^5",
"vite": "^7.0.5",
"vite-bundle-analyzer": "^1.2.1"
}
}