-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1000 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
34
35
36
{
"name": "you-dont-need-useless-dom",
"version": "1.5.0",
"packageManager": "[email protected]",
"description": "There is a lot of dom that we may not wanna look at.",
"keywords": [
"Chrome",
"Extension"
],
"author": "Leedom92",
"license": "MIT",
"repository": "https://github.com/leedom92/You-Dont-Need-Useless-Dom",
"scripts": {
"output:dev": "npx tailwindcss -i ./input.css -o ./extension/css/output.css --watch",
"output:prod": "npx tailwindcss -i ./input.css -o ./extension/css/output.css --minify",
"lint": "eslint .",
"release": "bumpp",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"extension/**/*.{js,json}": "eslint --fix"
},
"dependencies": {
"tailwindcss": "^3.4.9"
},
"devDependencies": {
"@leedomjs/eslint-config-basic": "^0.12.2",
"bumpp": "^9.5.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.9",
"simple-git-hooks": "^2.11.1"
}
}