-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "hltb-for-deck",
"version": "1.4.1",
"description": "A plugin to show you game lengths according to How Long To Beat",
"scripts": {
"build": "rollup -c",
"prepare": "husky install"
},
"author": "hulkrelax",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/fast-levenshtein": "^0.0.2",
"@types/react": "^17.0.70",
"@types/react-dom": "^18.2.15",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-import-assets": "^1.1.1",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"dependencies": {
"decky-frontend-lib": "^3.23.1",
"fast-levenshtein": "^3.0.0",
"localforage": "^1.10.0",
"react": "^18.2.0",
"react-icons": "^4.12.0"
},
"lint-staged": {
"*.{ts,tsx}": "prettier --write"
}
}