-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.76 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@adeficior/data-modifier",
"version": "0.0.0-dev",
"description": "Data Modifier",
"main": "dist/index.js",
"bin": {
"datamod": "dist/cli/index.js"
},
"exports": {
".": "./dist/index.js",
"./parser": "./dist/parser/index.js",
"./parser/botania": "./dist/parser/botania.js",
"./parser/create": "./dist/parser/create.js",
"./parser/thermal": "./dist/parser/thermal.js",
"./parser/farmersdelight": "./dist/parser/farmersdelight.js",
"./parser/adAstra": "./dist/parser/adAstra.js",
"./parser/roots": "./dist/parser/roots.js",
"./ids": "./dist/schema/ids.js"
},
"typesVersions": {
"*": {
"parser": [
"./dist/parser/index.d.ts"
],
"parser/botania": [
"./dist/parser/botania.d.ts"
],
"parser/create": [
"./dist/parser/create.d.ts"
],
"parser/thermal": [
"./dist/parser/thermal.d.ts"
],
"parser/farmersdelight": [
"./dist/parser/farmersdelight.d.ts"
],
"parser/adAstra": [
"./dist/parser/adAstra.d.ts"
],
"parser/roots": [
"./dist/parser/roots.d.ts"
],
"ids": [
"./dist/schema/ids.d.ts"
]
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"packageManager": "bun@1.3.14",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"check": "tsc --noEmit",
"cli": "bun run build && node dist/cli/index.js",
"test": "bun test",
"lint": "eslint {src,test}",
"format": "prettier --write {src,test}",
"test:ci": "bun run lint && bun run test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adeficior/DataModifier.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Adeficior/DataModifier/issues"
},
"homepage": "https://github.com/Adeficior/DataModifier#readme",
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/bun": "latest",
"@types/command-line-usage": "^5.0.4",
"@types/minimatch": "^3.0.5",
"@types/prettier": "^2.7.3",
"eslint": "^10.5.0",
"@eslint/js": "^10.0.1",
"typescript-eslint": "^8.61.0",
"typescript": "^5"
},
"dependencies": {
"@adeficior/pack-resolver": "^2.0.0-rc.17",
"@adeficior/resource-merger": "^2.0.0-rc.3",
"arg": "^5.0.2",
"chalk": "^5.6.2",
"command-line-usage": "^7.0.4",
"json5": "^2.2.3",
"lodash-es": "^4.18.1",
"minimatch": "^5.1.9",
"node-stream-zip": "^1.15.0",
"prettier": "^3.8.4",
"prismarine-nbt": "^2.8.0",
"zod": "^3.25.76"
}
}