-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.08 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.08 KB
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
{
"name": "demo",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"keywords": [],
"main": "src/main.jsx",
"scripts": {
"lint": "tsc --build && biome check --no-errors-on-unmatched --files-ignore-unknown=true",
"build": "wireit",
"dev": "wireit",
"serve": "wireit"
},
"wireit": {
"build": {
"command": "vite build",
"dependencies": [
"../../packages/adapter:build"
],
"clean": true,
"files": [
"index.html",
"src/**/*.{jsx,js,ts,tsx,css}",
"vite.config.js"
],
"output": [
"dist/**/*.{html,js,css}"
]
},
"serve": {
"command": "vite preview --port 3000",
"dependencies": [
"build"
],
"service": true
},
"dev": {
"command": "vite --force",
"dependencies": [
"../../packages/adapter:build",
"../../packages/snap:build",
{
"script": "../../packages/snap:serve",
"cascade": false
}
],
"service": true
}
},
"dependencies": {
"@acab/reset.css": "^0.11.0",
"@tanstack/react-query": "^5.90.9",
"clsx": "^2.1.0",
"dns-over-http-resolver": "^3.0.16",
"filsnap": "workspace:*",
"filsnap-adapter": "workspace:*",
"filsnap-adapter-react": "workspace:*",
"iso-base": "^4.2.1",
"iso-filecoin": "^7.4.7",
"preact": "^10.27.2",
"react-hook-form": "^7.66.0",
"react-toastify": "^11.0.5",
"viem": "^2.39.0",
"wagmi": "^2.19.4",
"water.css": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@biomejs/biome": "^2.3.5",
"@hugomrdias/configs": "^1.1.2",
"@preact/preset-vite": "^2.10.2",
"@types/node": "^24.10.1",
"tiny-git-rev-sync": "^0.1.0",
"typescript": "5.9.3",
"vite": "^7.2.4",
"wireit": "^0.14.12"
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*",
"@acab/reset.css",
"water.css",
"@preact/signals"
]
}
}