generated from sotayamashita/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.79 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
93
94
95
96
97
98
99
100
{
"private": true,
"name": "llm-interface-plus",
"license": "MIT",
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf dist .parcel-cache",
"build": "NODE_NO_WARNINGS=1 parcel build --config @parcel/config-webextension --no-cache",
"watch": "NODE_NO_WARNINGS=1 parcel watch --no-hmr --config @parcel/config-webextension",
"lint": "run-p lint:*",
"lint:typescript": "tsc --noEmit",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix": "run-p fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "run-p lint:* build",
"test:e2e": "playwright test",
"cm": "cz"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"webext-options-sync": "^4.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.17.0",
"@icons-pack/react-simple-icons": "^11.0.0",
"@parcel/config-webextension": "^2.13.0",
"@parcel/resolver-default": "^2.13.0",
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.0.293",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"class-variance-authority": "^0.7.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-tailwindcss": "^3.17.5",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all2": "^7.0.1",
"parcel": "^2.13.0",
"postcss": "^8.4.49",
"prettier": "3.4.2",
"process": "^0.11.10",
"svgo": "^3.3.2",
"tailwind-merge": "^2.5.5",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"@parcel/resolver-default": {
"packageExports": true
},
"targets": {
"default": {
"source": "src/manifest.json",
"distDir": "./dist"
}
},
"webExt": {
"sourceDir": "dist",
"run": {
"startUrl": [
"https://github.com/sotayamashita/llm-interface-plus"
]
}
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "eslint --fix"
}
}