-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.63 KB
/
package.json
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": "browser-extension-password-generator-pro",
"version": "0.4.4",
"author": {
"name": "Qit.tools",
"email": "[email protected]",
"url": "https://qit.tools/"
},
"description": "Powerful and user-friendly browser extension/add-on with PRO features for randomly generating and checking passwords security.",
"type": "module",
"homepage": "https://qit.tools/",
"license": "MIT",
"keywords": [
"password",
"security",
"generator",
"extension",
"add-on",
"firefox",
"edge",
"brave",
"opera",
"chrome",
"pro",
"protection",
"random"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Qit-tools/browser-extension-password-generator-pro.git"
},
"bugs": {
"url": "https://github.com/Qit-tools/browser-extension-password-generator-pro/issues",
"email": "[email protected]"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/deyurii"
},
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite --config vite.firefox.config",
"build:chrome": "bun run fmt && bun run lint && mkdir -p ./build/chrome && rm -rf ./build/chrome/* && rm -rf ./dist/build-chrome-* && tsc && vite build --config vite.chrome.config.ts && find ./build/chrome -name \".DS_Store\" -exec rm -rf {} + && rm -rf ./build/chrome/.vite && find ./build/chrome -mindepth 2 -name \"manifest.json\" -exec rm -rf {} + && find ./build/chrome -name \".*\" ! -name \".\" ! -name \"..\" -exec rm -rf {} + && cd build/chrome && zip -r ../../dist/build-chrome-$(node -p \"require('../../package.json').version\").zip . && cd ..",
"build:firefox": "bun run fmt && bun run lint && mkdir -p ./build/firefox && rm -rf ./build/firefox/* && rm -rf ./dist/build-firefox-* && tsc && vite build --config vite.firefox.config.ts && find ./build/firefox -name \".DS_Store\" -exec rm -rf {} + && rm -rf ./build/firefox/.vite && find ./build/firefox -mindepth 2 -name \"manifest.json\" -exec rm -rf {} + && find ./build/firefox -name \".*\" ! -name \".\" ! -name \"..\" -exec rm -rf {} + && cd build/firefox && zip -r ../../dist/build-firefox-$(node -p \"require('../../package.json').version\").zip . && cd ..",
"preview": "vite preview",
"lint": "eslint -c eslint.config.js ./src/**/*{.ts,.tsx}",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss}'"
},
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.12",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"preact": "^10.22.0",
"@crxjs/vite-plugin": "^2.0.0-beta.19",
"@eslint/js": "^9.3.0",
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@preact/preset-vite": "^2.8.2",
"@tailwindcss/forms": "^0.5.7",
"@types/chrome": "^0.0.268",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"eslint": "^9.3.0",
"generate-password-browser": "^1.1.0",
"globals": "^15.3.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"usehooks-ts": "^3.1.0",
"vite": "^5.2.11",
"vite-plugin-deadfile": "^1.2.5",
"vite-tsconfig-paths": "^4.3.2",
"web-ext": "^7.11.0",
"webextension-polyfill": "^0.12.0"
}
}