-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"private": "true",
"name": "Site Ratelimiter",
"version": "1.0.0",
"description": "An open source extension that tracks the time spent per 24 hours on a specified domain.",
"author": "squinlan",
"license": "MIT",
"scripts": {
"build": "parcel build source/manifest.json --no-content-hash --no-source-maps --no-cache",
"release": "webstore upload --source=dist --auto-publish",
"test": "jest",
"watch": "parcel watch source/manifest.json --no-cache --no-hmr"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"xo": {
"space": "true"
},
"dependencies": {
"preact": "^10.5.13",
"webextension-polyfill": "^0.8.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@parcel/babel-plugin-transform-runtime": "^2.0.0-nightly.1823",
"@parcel/babel-preset-env": "^2.0.0-alpha.3",
"@parcel/config-webextension": "^2.0.0-beta.3.1",
"autoprefixer": "^10.2.6",
"chrome-webstore-upload-cli": "^1.2.1",
"jest": "^27.0.4",
"parcel": "^2.0.0-beta.3.1",
"postcss": "^8.3.5",
"tailwindcss": "^2.2.4"
},
"webExt": {
"sourceDir": "dist"
}
}