forked from webpilot-ai/Webpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.46 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
{
"name": "Webpilot",
"displayName": "Webpilot - Copilot for All, Free & Open",
"version": "0.9.0",
"description": "__MSG_extensionDescription__",
"author": "webpilot.ai",
"scripts": {
"prepare": "husky install",
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:eslint": "eslint \"src/**/*.{js,ts,tsx}\" --cache --fix",
"lint:stylelint": "stylelint \"src/**/*.{css,scss,ts,tsx}\" --fix"
},
"dependencies": {
"@mozilla/readability": "0.4.3",
"@plasmohq/messaging": "0.1.6",
"@plasmohq/storage": "1.2.3",
"copy-to-clipboard": "3.3.3",
"gpt-3-encoder": "1.1.4",
"plasmo": "0.67.3",
"rc-dialog": "9.1.0",
"rc-tooltip": "6.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "4.4.5",
"react-router": "6.9.0",
"react-router-dom": "6.9.0",
"react-tabs": "6.0.0",
"react-toastify": "9.1.1",
"styled-jsx": "5.1.2"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@styled-jsx/plugin-sass": "4.0.2",
"@types/chrome": "0.0.224",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"postcss": "8.4.21",
"postcss-scss": "4.0.6",
"postcss-styled-syntax": "0.4.0",
"prettier": "2.8.4",
"sass": "1.59.3",
"stylelint": "15.2.0",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard-scss": "7.0.1",
"stylelint-order": "6.0.3",
"stylelint-prettier": "3.0.0",
"typescript": "4.9.5"
},
"manifest": {
"default_locale": "en",
"host_permissions": [
"<all_urls>"
],
"permissions": [
"storage",
"clipboardWrite"
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"tabs/prompt-board.html"
]
}
]
}
}