forked from penge/block-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 881 Bytes
/
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
{
"name": "block-site",
"version": "3.1.0",
"description": "Blocks access to distracting websites to improve your productivity.",
"author": "Pavel Bucka",
"license": "MIT",
"repository": "github:penge/block-site",
"private": true,
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint src --ext .ts",
"test": "TZ=UTC jest",
"build": "tsc --noEmit && tsup && npm run copy",
"copy": "copyfiles --up 1 public/** dist && copyfiles manifest.json dist"
},
"devDependencies": {
"@types/chrome": "^0.0.200",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"copyfiles": "^2.4.1",
"eslint": "^8.26.0",
"jest": "^29.2.0",
"ts-jest": "^29.0.3",
"tsup": "^6.3.0"
},
"dependencies": {
"dayjs": "^1.11.6"
}
}