-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.61 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
101
102
103
104
105
106
107
108
109
110
{
"name": "askman-chrome-extension",
"version": "0.0.10",
"description": "Askman is an open-source browser extension that connects AI to web pages",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/askman-dev/askman-chrome-extension.git"
},
"scripts": {
"build": "tsc --project tsconfig.json --noEmit && vite build",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.mjs",
"wss": "node utils/reload/initReloadServer.js",
"dev": "pnpm build:hmr && (run-p wss build:watch)",
"dev:firefox": "pnpm build:hmr && (run-p wss build:firefox:watch)",
"test": "vitest",
"commitlint": "commitlint --edit",
"lint": "eslint \"src/**/*.{ts,js,tsx,jsx}\"",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write",
"prepare": "husky install"
},
"type": "module",
"dependencies": {
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.1",
"@iarna/toml": "^2.2.5",
"@langchain/community": "^0.3.11",
"@langchain/core": "^0.3.17",
"@langchain/openai": "^0.3.12",
"@monaco-editor/react": "^4.6.0",
"@shikijs/core": "^1.15.1",
"@shikijs/monaco": "^1.15.1",
"@types/prop-types": "^15.7.12",
"ahooks": "^3.7.9",
"classnames": "^2.5.1",
"construct-style-sheets-polyfill": "3.1.0",
"dom-types": "^1.1.2",
"handlebars": "^4.7.8",
"highlight.js": "^11.9.0",
"loglevel": "^1.9.2",
"monaco-editor": "^0.51.0",
"monaco-editor-core": "^0.51.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-highlight": "^0.15.0",
"react-textarea-autosize": "^8.5.3",
"shiki": "^1.15.1",
"smol-toml": "^1.1.4",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "18.1.0",
"@rollup/plugin-typescript": "11.1.5",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "^14.6.0",
"@twind/core": "^1.1.3",
"@twind/preset-autoprefix": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"@types/chrome": "^0.0.297",
"@types/node": "22.8.7",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.18",
"@types/ws": "8.5.8",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "4.2.0",
"@vitest/coverage-v8": "^3.0.1",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"eslint": "^9.18.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"fs-extra": "11.1.1",
"globals": "^14.0.0",
"husky": "8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"rollup": "4.22.4",
"sass": "1.69.5",
"ts-loader": "9.5.0",
"tslib": "2.6.2",
"typescript": "~5.5.3",
"vite": "^5.1.4",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-toml": "^0.7.0",
"vite-plugin-zip-pack": "^1.2.4",
"vitest": "^3.0.1",
"ws": "8.17.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --debug"
]
},
"packageManager": "[email protected]"
}