-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
41
42
43
44
45
{
"name": "@pionxzh/get-twitter-icons-back",
"type": "module",
"version": "1.8.0",
"private": true,
"packageManager": "[email protected]",
"title": "Get Twitter Icons Back",
"description": "Brings back the blue bird icon on Twitter. No more 𝕏.",
"author": "Pionxzh",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test:type": "tsc --noEmit",
"test": "pnpm run test:type",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"vite-plugin-monkey": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@pionxzh/eslint-config": "^2.0.2",
"@types/node": "^20.12.7",
"eslint": "^9.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm exec eslint"
}
}