-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 889 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 889 Bytes
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
{
"name": "bookmark-ai-organizer",
"version": "1.1.0",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"build:store": "npm run clean && npm run build && npm run package",
"dev": "webpack --mode=development --watch",
"release:notes": "node scripts/release-notes.js",
"test": "jest",
"clean": "rm -rf dist extension.zip",
"type-check": "tsc --noEmit",
"package": "cd dist && zip -r ../extension.zip ."
},
"dependencies": {
"openai": "^5.11.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/jest": "^29.5.12",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"jest": "^29.7.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}