-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.25 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
{
"name": "scribe-pal",
"version": "1.6.3",
"description": "ScribePal is an intelligent browser extension that leverages AI to empower your web experience.",
"author": "Code Forge Temple",
"type": "module",
"license": "GPL",
"scripts": {
"typecheck": "tsc --noEmit",
"dev:chrome": "tsc --noEmit && webpack --mode development --env browser=chrome --config webpack.config.mjs",
"dev:firefox": "tsc --noEmit && webpack --mode development --env browser=firefox --config webpack.config.mjs",
"build:chrome": "tsc --noEmit && webpack --mode production --env browser=chrome --config webpack.config.mjs",
"build:firefox": "tsc --noEmit && webpack --mode production --env browser=firefox --config webpack.config.mjs",
"lint": "eslint .",
"dev": "npm run lint && concurrently \"npm run dev:chrome\" \"npm run dev:firefox\"",
"build": "npm run lint && concurrently \"npm run build:chrome\" \"npm run build:firefox\""
},
"dependencies": {
"crypto-browserify": "^3.12.1",
"ollama": "^0.5.12",
"path-browserify": "^1.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.0.1",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.21.0",
"@svgr/webpack": "^8.1.0",
"@types/chrome": "^0.0.304",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/react-syntax-highlighter": "^15.5.13",
"babel-loader": "^9.2.1",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"raw-loader": "^4.0.2",
"sass": "^1.84.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}