-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@genshin-toolkit/parser",
"version": "1.0.1",
"description": "A small library to parse and validate Genshin Impact game data.",
"main": "dist/node/index.js",
"types": "dist/node/index.ts",
"exports": {
".": {
"node": "./dist/node/index.js",
"default": "./dist/web/index.js"
},
"./web": {
"types": "./dist/web/web/index.d.ts",
"default": "./dist/web/web/index.js"
}
},
"files": ["dist"],
"scripts": {
"build:node": "tsc --project tsconfig.node.json",
"build:web": "tsc --project tsconfig.web.json",
"build": "npm run build:node && npm run build:web",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eshwinrio/genshin-impact-gamedata-schema.git"
},
"keywords": [
"genshin",
"impact",
"game",
"hoyoverse",
"mihoyo",
"anime"
],
"author": "Rio",
"license": "MIT",
"bugs": {
"url": "https://github.com/eshwinrio/genshin-impact-gamedata-schema/issues"
},
"homepage": "https://github.com/eshwinrio/genshin-impact-gamedata-schema#readme",
"devDependencies": {
"@types/node": "20.12.12",
"typescript": "^5.0.0"
},
"dependencies": {
"zod": "^3.23.8"
}
}