-
-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.33 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
75
76
{
"name": "ai-web-extensions",
"description": "AI browser extensions & userscripts to augment your web experience",
"author": {
"name": "Adam Lui",
"email": "adam@kudoai.com",
"url": "https://github.com/adamlui"
},
"homepage": "https://www.aiwebextensions.org",
"bugs": {
"url": "https://github.com/adamlui/ai-web-extensions/issues",
"email": "adam@kudoai.com"
},
"license": "MIT",
"funding": [
{
"type": "cashapp",
"url": "https://cash.app/$AdamLui"
},
{
"type": "github",
"url": "http://github.com/sponsors/adamlui"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/adamlui"
},
{
"type": "paypal",
"url": "https://paypal.me/adamlui"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/adamlui/ai-web-extensions.git"
},
"scripts": {
"prepare": "husky",
"dev:chatbots": "node utils/dev/chatbots",
"dev:chatbot": "npm run dev:chatbots",
"build:css": "scss-to-css . dist",
"lint": "eslint . --cache",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix --cache",
"lint:fix-all": "eslint . --fix",
"bump:chatbots": "node utils/bump/chatbots --cache",
"bump:chatbots-nc": "npm run bump:chatbots",
"bump:chatbots-np": "npm run bump:chatbots -- --no-push",
"bump:chatbot": "npm run bump:chatbots",
"bump:chatbot-nc": "npm run bump:chatbots-nc",
"bump:chatbot-np": "npm run bump:chatbots-np",
"bump:res": "node utils/bump/resources --cache",
"bump:ext": "node utils/bump/extension-manifests --cache",
"bump:ext-nc": "npm run bump:ext -- --no-commit",
"bump:ext-np": "npm run bump:ext -- --no-push",
"bump:chrome": "node utils/bump/extension-manifests --chrome",
"bump:chromium": "npm run bump:chrome",
"bump:ff": "node utils/bump/extension-manifests --ff",
"bump:firefox": "npm run bump:ff"
},
"devDependencies": {
"@adamlui/scss-to-css": "^2.4.0",
"@eslint/css": "^1.0.0",
"@eslint/json": "^1.1.0",
"@eslint/markdown": "^7.5.1",
"@html-eslint/eslint-plugin": "^0.58.1",
"@html-eslint/parser": "^0.58.0",
"@stylistic/eslint-plugin": "^5.10.0",
"cross-spawn": "^7.0.6",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-regexp": "^3.1.0",
"husky": "^9.1.7",
"ssri": "^13.0.1"
}
}