@adeficior/data-modifier 1.0.0-rc.9 → 2.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +95 -95
package/package.json
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@adeficior/data-modifier",
|
|
3
|
+
"version": "2.0.0-rc.1",
|
|
4
|
+
"description": "Data Modifier",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"datamod": "dist/cli/index.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./dist/index.js",
|
|
11
|
+
"./parser": "./dist/parser/index.js",
|
|
12
|
+
"./parser/botania": "./dist/parser/botania.js",
|
|
13
|
+
"./parser/create": "./dist/parser/create.js",
|
|
14
|
+
"./parser/thermal": "./dist/parser/thermal.js",
|
|
15
|
+
"./parser/farmersdelight": "./dist/parser/farmersdelight.js",
|
|
16
|
+
"./parser/adAstra": "./dist/parser/adAstra.js",
|
|
17
|
+
"./parser/roots": "./dist/parser/roots.js",
|
|
18
|
+
"./ids": "./dist/schema/ids.js"
|
|
19
|
+
},
|
|
20
|
+
"typesVersions": {
|
|
21
|
+
"*": {
|
|
22
|
+
"parser": [
|
|
23
|
+
"./dist/parser/index.d.ts"
|
|
24
|
+
],
|
|
25
|
+
"parser/botania": [
|
|
26
|
+
"./dist/parser/botania.d.ts"
|
|
27
|
+
],
|
|
28
|
+
"parser/create": [
|
|
29
|
+
"./dist/parser/create.d.ts"
|
|
30
|
+
],
|
|
31
|
+
"parser/thermal": [
|
|
32
|
+
"./dist/parser/thermal.d.ts"
|
|
33
|
+
],
|
|
34
|
+
"parser/farmersdelight": [
|
|
35
|
+
"./dist/parser/farmersdelight.d.ts"
|
|
36
|
+
],
|
|
37
|
+
"parser/adAstra": [
|
|
38
|
+
"./dist/parser/adAstra.d.ts"
|
|
39
|
+
],
|
|
40
|
+
"parser/roots": [
|
|
41
|
+
"./dist/parser/roots.d.ts"
|
|
42
|
+
],
|
|
43
|
+
"ids": [
|
|
44
|
+
"./dist/schema/ids.d.ts"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"types": "./dist/index.d.ts",
|
|
49
|
+
"files": [
|
|
50
|
+
"dist"
|
|
51
|
+
],
|
|
52
|
+
"type": "module",
|
|
53
|
+
"packageManager": "bun@1.3.14",
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsc --project tsconfig.build.json",
|
|
56
|
+
"lint": "eslint {src,test}",
|
|
57
|
+
"cli": "bun run build && node dist/cli/index.js",
|
|
58
|
+
"test": "bun test",
|
|
59
|
+
"format": "prettier --write {src,test}",
|
|
60
|
+
"test:ci": "bun run lint && bun run test --coverage"
|
|
61
|
+
},
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "git+https://github.com/Adeficior/DataModifier.git"
|
|
65
|
+
},
|
|
66
|
+
"license": "ISC",
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/Adeficior/DataModifier/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/Adeficior/DataModifier#readme",
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@types/lodash-es": "^4.17.12",
|
|
73
|
+
"@types/bun": "latest",
|
|
74
|
+
"@types/command-line-usage": "^5.0.4",
|
|
75
|
+
"@types/minimatch": "^3.0.5",
|
|
76
|
+
"@types/prettier": "^2.7.3",
|
|
77
|
+
"eslint": "^10.5.0",
|
|
78
|
+
"@eslint/js": "^10.0.1",
|
|
79
|
+
"typescript-eslint": "^8.61.0",
|
|
80
|
+
"typescript": "^5"
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@adeficior/pack-resolver": "^2.0.0-rc.17",
|
|
84
|
+
"@adeficior/resource-merger": "^2.0.0-rc.3",
|
|
85
|
+
"arg": "^5.0.2",
|
|
86
|
+
"chalk": "^5.6.2",
|
|
87
|
+
"command-line-usage": "^7.0.4",
|
|
88
|
+
"json5": "^2.2.3",
|
|
89
|
+
"lodash-es": "^4.18.1",
|
|
90
|
+
"minimatch": "^5.1.9",
|
|
91
|
+
"node-stream-zip": "^1.15.0",
|
|
92
|
+
"prettier": "^3.8.4",
|
|
93
|
+
"prismarine-nbt": "^2.8.0",
|
|
94
|
+
"zod": "^3.25.76"
|
|
95
|
+
}
|
|
96
96
|
}
|