-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "webpilot",
"version": "0.10.0204",
"author": "webpilot.ai",
"displayName": "Webpilot - Copilot for All, Free & Open",
"description": "__MSG_extensionDescription__",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky install",
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "pnpm lint:eslint && pnpm lint:stylelint && pnpm lint:prettier",
"lint:eslint": "eslint './**/*.{vue,ts,tsx,js}' --cache --fix",
"lint:stylelint": "stylelint './{src,assets}/**/*.{vue,scss,css}' --cache --fix",
"lint:prettier": "prettier './*.{json,md}' './{src,assets}/**/*.{json,md}' --cache --write",
"gettext": "pnpm gettext:extract && pnpm gettext:compile && pnpm post-gettext",
"gettext:extract": "vue-gettext-extract",
"gettext:compile": "vue-gettext-compile",
"post-gettext": "node ./scripts/i18n/postGettext.js"
},
"lint-staged": {
"*.{vue,ts,tsx,js}": "eslint --cache --fix",
"*.{vue,scss,css}": "stylelint --cache --fix",
"*.{json,md}": "prettier --cache --write"
},
"dependencies": {
"@mozilla/readability": "^0.4.4",
"@plasmohq/messaging": "^0.4.0",
"@plasmohq/storage": "^1.6.1",
"@vueuse/core": "^10.1.2",
"copy-to-clipboard": "^3.3.3",
"js-tiktoken": "^1.0.7",
"jsonfile": "^6.1.0",
"pangu": "^4.0.7",
"pinia": "^2.0.36",
"plasmo": "0.76.3",
"vue": "3.2.47",
"vue-toast-notification": "^3.1.1",
"vue3-markdown-it": "^1.0.10",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@parcel/optimizer-data-url": "2.9.1",
"@parcel/transformer-inline-string": "2.9.1",
"@types/chrome": "0.0.231",
"@types/node": "18.15.11",
"eslint": "^8.38.0",
"eslint-config-standard-one": "^0.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.7",
"prettier-config-standard-one": "^0.0.1",
"stylelint": "^15.5.0",
"stylelint-config-standard-one": "^0.0.1",
"typescript": "5.0.4",
"vue3-gettext": "2.5.0-alpha.1"
},
"manifest": {
"default_locale": "en",
"host_permissions": [
"<all_urls>"
],
"permissions": [
"tabs",
"storage",
"clipboardWrite"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"manifest.json",
"*.css"
]
}
]
}
}