-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.26 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
{
"name": "offlineseeds",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "concurrently --kill-others-on-fail --names rescript,astro \"npm:res:watch\" \"astro dev --host --open http://localhost:4321/\"",
"build": "npm run res:build && astro build",
"preview": "astro preview",
"format": "rescript format && prettier --write . --ignore-path .gitignore",
"format:check": "rescript format --check && prettier --check . --ignore-path .gitignore",
"res:build": "rescript",
"res:watch": "rescript watch",
"typecheck": "npm run res:build && astro check",
"test:unit": "npm run res:build && tsx --test tests/seed-picker.test.ts",
"test:render": "node --test tests/rendered-html.test.mjs",
"test": "npm run test:unit && npm run build && npm run test:render",
"lint": "eslint . --ignore-pattern dist",
"deploy": "npm run build && wrangler deploy --config wrangler.jsonc"
},
"dependencies": {
"@astrojs/react": "6.0.2",
"@base-ui/react": "1.7.0",
"@fontsource-variable/geist": "^5.3.0",
"@rescript/core": "1.6.1",
"@scure/bip39": "^2.2.0",
"astro": "7.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.536.0",
"pdf-lib": "^1.17.1",
"react": "19.2.6",
"react-dom": "19.2.6",
"shadcn": "^4.16.1",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"uqr": "^0.1.3"
},
"devDependencies": {
"@astrojs/check": "0.9.6",
"@eslint/js": "9.39.4",
"@tailwindcss/vite": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"concurrently": "10.0.4",
"eslint": "9.39.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"gentype": "4.5.0",
"globals": "16.4.0",
"jsqr": "^1.4.0",
"prettier": "^3.9.6",
"rescript": "12.3.0",
"tailwindcss": "4.2.1",
"tsx": "^4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.59.3",
"wrangler": "4.120.0"
},
"type": "module",
"allowScripts": {
"esbuild@0.28.1": true,
"esbuild@0.25.12": true,
"fsevents@2.3.3": true,
"gentype@4.5.0": true,
"workerd@1.20260801.1": true
}
}