-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.84 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
{
"name": "refined-github-projects",
"version": "1.5.0",
"description": "Refined GitHub Projects — bulk edit, close, delete, and deep duplicate for GitHub Projects",
"packageManager": "pnpm@11.5.0",
"scripts": {
"dev": "wxt",
"build": "wxt build",
"build:chrome": "wxt build --browser chrome",
"build:firefox": "wxt build --browser firefox",
"build:edge": "wxt build --browser edge",
"build:safari": "wxt build --browser safari",
"typecheck": "tsc --noEmit",
"postinstall": "wxt prepare",
"zip": "wxt zip",
"zip:chrome": "wxt zip --browser chrome",
"zip:firefox": "wxt zip --browser firefox",
"zip:edge": "wxt zip --browser edge",
"zip:safari": "wxt zip --browser safari",
"publish:chrome": "wxt build --browser chrome && wxt zip --browser chrome",
"publish:firefox": "wxt build --browser firefox && wxt zip --browser firefox",
"publish:edge": "wxt build --browser edge && wxt zip --browser edge",
"publish:safari": "wxt build --browser safari && wxt zip --browser safari",
"publish:all": "pnpm run publish:chrome && pnpm run publish:firefox && pnpm run publish:edge && pnpm run publish:safari",
"check:manifest": "node -e \"const m=require('./dist/chrome-mv3/manifest.json');const allowed=['storage'];const extra=(m.permissions||[]).filter(p=>!allowed.includes(p));if(extra.length){console.error('Extra permissions:',extra);process.exit(1);}else{console.log('Manifest permissions OK:',m.permissions);}\"",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.8.1",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
"@emotion/is-prop-valid": "^1.4.0",
"@primer/octicons-react": "^19.28.0",
"@primer/react": "^37.31.0",
"@tippyjs/react": "^4.2.6",
"@webext-core/messaging": "^3.0.1",
"driver.js": "^1.4.0",
"marked": "^18.0.4",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"styled-components": "^6.4.2",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.8",
"@wxt-dev/module-react": "^1.2.2",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.1.1",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"wxt": "^0.20.26"
}
}