-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
32 lines (32 loc) · 865 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
{
"name": "genshin-langdata",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"engines": {
"node": "22.x",
"npm": ">=10.0.0"
},
"scripts": {
"build": "node scripts/build.js",
"todo": "node scripts/todo.js",
"test": "npm run build && vitest run",
"lint": "find ./dataset/ -name *.json5 | xargs json5 --validate && eslint --ext .js,.mjs,.cjs,.ts,.json,.json5 --ignore-path .gitignore .",
"release": "./scripts/release.sh"
},
"dependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.57.1",
"eslint-config-xicri": "latest",
"iconv-lite": "^0.6.3",
"json5": "^2.2.2",
"klona": "^2.0.4",
"lodash-es": "^4.17.21",
"luxon": "^3.5.0",
"marked": "^14.1.3",
"node-fetch": "^3.2.4",
"pinyin-tone": "^2.2.4",
"vitest": "^2.1.5",
"wrangler": "^3.87.0"
}
}