-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"private": true,
"name": "skyline-overlay",
"version": "4.1.0",
"versionCode": "Iseri Nina",
"description": "A modern customizable horizon FFXIV miniparse overlay.",
"license": "Apache-2.0",
"author": "DSRKafuU <dsrkafuu@outlook.com> (https://dsrkafuu.net)",
"scripts": {
"eslint": "eslint ./src",
"prettier": "prettier --write .",
"typecheck": "tsc",
"bundle": "vite build",
"serve": "vite",
"script:genIconIdx": "node \"./scripts/genIconIdx.js\"",
"script:genMeta": "node \"./scripts/genMeta.js\"",
"script:modSource": "node \"./scripts/modSource.js\"",
"script:removeTrash": "node \"./scripts/removeTrash.js\"",
"build": "cross-env NODE_ENV=production run-s script:genIconIdx script:genMeta eslint typecheck bundle script:removeTrash",
"dev": "cross-env NODE_ENV=development VITE_GA_ID=TEST run-s script:genIconIdx script:genMeta serve"
},
"dependencies": {
"@reduxjs/toolkit": "^2.3.0",
"clsx": "^2.1.1",
"ffxiv-overlay-api": "^4.8.0",
"immer": "^10.1.1",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"stable-hash": "^0.0.4",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@dsrca/config": "^4.1.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"glob": "^10.4.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.80.6",
"typescript": "~5.4.5",
"vite": "^5.4.10",
"vite-plugin-html-env": "^1.2.8",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-svgr": "^4.3.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
}
}
}