-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1 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
{
"name": "tab-sleeper",
"version": "0.4.0",
"description": "Sleep and wake windows in Google Chrome",
"engines": {
"node": ">= 20",
"npm": ">= 10"
},
"scripts": {
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=development",
"build:release": "webpack --mode=production",
"fmt": "prettier --write static/**/* src/**/* platform/**/*"
},
"author": "Greg Signal",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.7",
"@types/webextension-polyfill": "^0.10.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"dexie": "^3.2.4",
"lodash": "^4.17.21",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}