-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.92 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 5.92 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "blitz-extension",
"version": "1.2.0",
"private": true,
"type": "module",
"description": "Blitz — AI job application Chrome extension",
"license": "MIT",
"author": "Hum2a",
"repository": {
"type": "git",
"url": "git+https://github.com/Hum2a/blitz-extension.git"
},
"bugs": {
"url": "https://github.com/Hum2a/blitz-extension/issues"
},
"homepage": "https://github.com/Hum2a/blitz-extension#readme",
"keywords": [
"chrome-extension",
"job-applications",
"resume",
"cv",
"ai",
"greenhouse",
"linkedin",
"indeed",
"workday"
],
"scripts": {
"setup": "npm install && npm run icons && npm run build",
"postinstall": "npm run copy:offscreen && npm run config:sync",
"config:sync": "node scripts/sync-config-from-env.mjs",
"prebuild": "npm run config:sync",
"predev": "npm run config:sync",
"copy:jspdf": "node scripts/copy-jspdf.mjs",
"copy:offscreen": "node scripts/copy-offscreen-deps.mjs",
"icons": "node scripts/generate-icons.mjs",
"dev": "npm run copy:offscreen && vite build --watch",
"web:dev": "vite --config vite.web.config.js",
"web:build": "vite build --config vite.web.config.js",
"admin:dev": "vite --config vite.admin.config.js",
"admin:build": "vite build --config vite.admin.config.js",
"marketing:dev": "vite --config vite.marketing.config.js",
"marketing:build": "vite build --config vite.marketing.config.js",
"marketing:e2e": "npm run marketing:build && vite preview --config vite.marketing.config.js --port 3789 --strictPort --host 127.0.0.1",
"build": "npm run copy:offscreen && vite build",
"build:check": "npm run build && npm run validate",
"clean": "node scripts/clean.mjs",
"rebuild": "npm run clean && npm run build",
"validate": "node scripts/validate.mjs",
"loc": "node scripts/loc-report.mjs",
"loc:json": "node scripts/loc-report.mjs --json",
"loc:md": "node scripts/loc-report.mjs --md",
"loc:verbose": "node scripts/loc-report.mjs --verbose",
"test": "node scripts/test-all.mjs",
"test:ci": "npm run test:unit && npm run test:validate",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:unit:ui": "vitest --ui",
"test:validate": "node scripts/validate.mjs",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"test:license": "npm run test --prefix license-worker",
"pack": "npm run build:check && node scripts/zip-extension.mjs",
"pack:zip": "node scripts/zip-extension.mjs",
"version:sync": "node scripts/sync-version.mjs",
"version:patch": "node scripts/bump-version.mjs patch",
"version:minor": "node scripts/bump-version.mjs minor",
"version:major": "node scripts/bump-version.mjs major",
"version:set": "node scripts/bump-version.mjs",
"changelog": "node scripts/changelog.mjs",
"changelog:add": "node scripts/changelog.mjs add",
"release:patch": "node scripts/bump-version.mjs patch",
"release:minor": "node scripts/bump-version.mjs minor",
"release:major": "node scripts/bump-version.mjs major",
"release:pack": "npm run version:patch && npm run pack",
"deploy:license": "npx wrangler deploy --config license-worker/wrangler.toml --env production",
"deploy:admin": "npm run admin:build && npx wrangler deploy --config admin-worker/wrangler.toml --env production",
"deploy:web": "npm run web:build && npx wrangler deploy --config web-worker/wrangler.toml --env production",
"deploy:marketing": "npm run marketing:build && npx wrangler deploy --config marketing-worker/wrangler.toml --env production",
"deploy:cloudflare": "npm run deploy:license && npm run deploy:marketing && npm run deploy:admin && npm run deploy:web",
"deploy:supabase": "npx supabase functions deploy link-license && npx supabase functions deploy delete-account && npx supabase functions deploy admin-delete-user && npx supabase functions deploy admin-revoke-sessions && npx supabase functions deploy lemonsqueezy-webhook",
"deploy:all": "npm run build:check && npm run deploy:cloudflare",
"deploy:worker": "npm run deploy:license",
"admin:deploy:cloudflare-workers": "npm run deploy:admin",
"web:deploy:cloudflare-workers": "npm run deploy:web",
"worker:install": "npm install --prefix license-worker",
"worker:dev": "npm run dev --prefix license-worker",
"worker:deploy": "npm run deploy:license",
"worker:kv:create": "npm run kv:create --prefix license-worker",
"worker:license:add": "npm run license:add --prefix license-worker",
"worker:test": "npm run test --prefix license-worker",
"license:add": "npm run license:add --prefix license-worker",
"license:test": "npm run test --prefix license-worker",
"db:migrate": "node scripts/run-migrations.mjs",
"db:migrate:status": "node scripts/run-migrations.mjs --status",
"db:migrate:dry": "node scripts/run-migrations.mjs --dry-run",
"db:seed:developer": "node scripts/seed-developer-role.mjs",
"load": "echo Open chrome://extensions → Developer mode → Load unpacked → select this folder"
},
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"framer-motion": "^12.40.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"mammoth": "^1.9.0",
"pdfjs-dist": "^4.10.38",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.7",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.9.0",
"pg": "^8.16.0",
"postcss": "^8.5.3",
"sharp": "^0.34.2",
"tailwindcss": "^3.4.17",
"vite": "^6.3.5",
"@playwright/test": "^1.52.0",
"vitest": "^4.1.7",
"wrangler": "^4.14.0"
}
}