-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 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
{
"name": "invertus",
"version": "0.1.0",
"description": "Simple, sticky, keyboard-driven webpage color inversion.",
"repository": {
"type": "git",
"url": "git+https://github.com/nihil2501/invertus.git"
},
"author": "Oren Mittman",
"license": "ISC",
"bugs": {
"url": "https://github.com/nihil2501/invertus/issues"
},
"homepage": "https://github.com/nihil2501/invertus",
"scripts": {
"build": "parcel build src/manifest.json",
"start": "parcel watch src/manifest.json --host localhost",
"code": "tsc --noEmit && eslint 'src/js/**/*.ts' --fix && prettier --write 'src/js/**/*.ts'"
},
"devDependencies": {
"@parcel/config-webextension": "^2.8.2",
"@tsconfig/strictest": "^1.0.2",
"@types/chrome": "^0.0.208",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"parcel": "^2.8.2",
"parcel-reporter-clean-dist": "^1.0.4",
"prettier": "2.8.3",
"typescript": "^4.9.4"
}
}