-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.52 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.52 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
{
"name": "alphapush",
"type": "module",
"version": "0.5.0",
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "astro dev",
"build": "turbo run build && astro check && astro build",
"preview": "astro preview",
"type-check": "astro check",
"astro": "astro",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply alphapush-prod --local",
"db:migrate:prod": "wrangler d1 migrations apply alphapush-prod --remote",
"db:migrate:dev": "wrangler d1 migrations apply --env dev alphapush-dev --remote",
"deploy:dev": "npm run build && wrangler pages deploy dist --branch dev",
"deploy:prod": "npm run build && wrangler pages deploy dist --branch main",
"prebuild": "node scripts/prebuild.mjs",
"generate:worker-types": "wrangler types"
},
"license": "MIT",
"homepage": "https://github.com/alkinum/alphapush",
"repository": "https://github.com/alkinum/alphapush.git",
"author": "alkinum.io",
"bugs": "https://github.com/alkinum/alphapush/issues",
"maintainers": [
"BackRunner"
],
"dependencies": {
"@alkinum/alphapush-encryption": "file:./packages/encryption",
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^12.6.10",
"@astrojs/tailwind": "^6.0.2",
"@astrojs/vue": "^5.1.1",
"@block65/webcrypto-web-push": "^1.0.2",
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@iconify/vue": "^4.3.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-icons/vue": "^1.0.0",
"@vueuse/core": "^12.8.2",
"@vueuse/gesture": "^2.0.0",
"astro": "^5.14.3",
"base64-arraybuffer": "^1.0.2",
"better-auth": "^1.3.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.6",
"highlight.js": "^11.11.1",
"lru-cache": "^11.2.2",
"lucide-vue-next": "^0.482.0",
"marked": "^15.0.12",
"nanoid": "^5.1.6",
"path-browserify-esm": "^1.0.6",
"radix-vue": "^1.9.17",
"reka-ui": "^2.5.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.18",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vaul-vue": "^0.2.1",
"vue": "^3.5.22"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251008.0",
"@tanstack/vue-table": "^8.21.3",
"@types/marked": "^6.0.0",
"@types/node": "^22.18.8",
"@types/web-push": "^3.6.4",
"better-sqlite3": "^11.10.0",
"cross-env": "^7.0.3",
"dotenv": "^16.6.1",
"drizzle-kit": "^0.30.6",
"turbo": "^2.5.8",
"wrangler": "^4.42.2"
}
}