-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.08 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.08 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
{
"name": "clean-autofill",
"version": "2.0.0",
"description": "Chrome extension that automatically fills email addresses based on the current website domain",
"scripts": {
"prepare": "husky toolkit/husky",
"build": "node toolkit/scripts/build.js",
"pack": "node toolkit/scripts/pack.js",
"bump:patch": "node toolkit/scripts/bump-version.js patch",
"bump:minor": "node toolkit/scripts/bump-version.js minor",
"bump:major": "node toolkit/scripts/bump-version.js major",
"release": "npm run pack && echo 'Ready for release. Tag and push to trigger GitHub Actions.'",
"validate": "node toolkit/scripts/validate.js",
"lint": "biome lint --config-path toolkit/biome/biome.json src/",
"lint:fix": "biome lint --config-path toolkit/biome/biome.json --write src/",
"format": "biome format --config-path toolkit/biome/biome.json --write src/",
"format:check": "biome format --config-path toolkit/biome/biome.json src/",
"check": "biome check --config-path toolkit/biome/biome.json src/",
"check:fix": "biome check --config-path toolkit/biome/biome.json --write src/",
"test": "bun --config=toolkit/bun/bunfig.toml test src/",
"test:watch": "bun --config=toolkit/bun/bunfig.toml test src/ --watch",
"test:coverage": "bun --config=toolkit/bun/bunfig.toml test src/ --coverage",
"typecheck": "tsc -p toolkit/typescript/tsconfig.json --noEmit",
"build:ts": "tsc -p toolkit/typescript/tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ZAAI-com/Clean-Autofill.git"
},
"keywords": [
"chrome-extension",
"email",
"autofill",
"productivity"
],
"author": "Manuel Gruber",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@happy-dom/global-registrator": "^20.9.0",
"@types/chrome": "^0.1.40",
"esbuild": "^0.27.7",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"psl": "^1.15.0"
},
"chromeWebStore": {
"extensionId": "klbbkndjohchnidkbnjijdbggfadpppf"
}
}