-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.12 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
{
"name": "simple-job-apply-extension",
"version": "0.2.2",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"predev": "npm run generate-icons",
"build": "vite build",
"prebuild": "npm run generate-icons",
"build:firefox": "vite build --mode firefox && npx web-ext build --source-dir dist --artifacts-dir web-ext-artifacts --overwrite-dest && VERSION=$(node -p \"require('./package.json').version\") && mv web-ext-artifacts/simple_job_apply-$VERSION.zip web-ext-artifacts/simple_job_apply-$VERSION.xpi",
"prebuild:firefox": "npm run generate-icons",
"sign:firefox": "npx web-ext sign --source-dir dist --artifacts-dir web-ext-artifacts --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET --channel=unlisted && for file in web-ext-artifacts/*.zip; do [ -f \"$file\" ] && mv \"$file\" \"${file%.zip}.xpi\"; done",
"preview": "vite preview",
"package_src": "node scripts/package_src.cjs",
"generate-icons": "node scripts/generate-icons.mjs",
"dev:chrome": "concurrently -n vite,chrome -c blue,green \"vite build --watch\" \"web-ext run --source-dir dist --target=chromium\"",
"build:chrome": "npm run generate-icons && vite build && node scripts/pack-chrome.mjs",
"watch:firefox": "vite build --watch --mode firefox"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tiptap/extension-font-family": "^3.10.5",
"@tiptap/extension-link": "^3.10.5",
"@tiptap/extension-text-align": "^3.10.5",
"@tiptap/extension-text-style": "^3.10.5",
"@tiptap/extension-underline": "^3.10.5",
"@tiptap/react": "^3.10.5",
"@tiptap/starter-kit": "^3.10.5",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.0.1",
"crx3": "^1.0.5",
"icojs": "^0.20.0",
"sharp": "^0.33.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"web-ext": "^7.11.0"
}
}