@adeficior/data-modifier-core 2.0.0-rc.20260814115618
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 +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@adeficior/data-modifier-core",
|
|
3
|
+
"version": "2.0.0-rc.20260814115618",
|
|
4
|
+
"exports": {
|
|
5
|
+
".": "./dist/index.js",
|
|
6
|
+
"./testing": "./dist/testing/index.js",
|
|
7
|
+
"./serializer": "./dist/serializer/index.js"
|
|
8
|
+
},
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
"*": {
|
|
12
|
+
"testing": [
|
|
13
|
+
"./dist/testing/index.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"serializer": [
|
|
16
|
+
"./dist/serializer/index.d.ts"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc --project tsconfig.build.json",
|
|
26
|
+
"check": "tsc --noEmit",
|
|
27
|
+
"dev": "bun run build --watch",
|
|
28
|
+
"lint": "eslint {src,test}",
|
|
29
|
+
"test": "bun test --timeout 10000",
|
|
30
|
+
"prune": "bun run datamod-dev --prune",
|
|
31
|
+
"prepare": "datamod-dev --configs && datamod-dev --types",
|
|
32
|
+
"test:ci": "bun run lint && bun run check && bun run test --coverage"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@adeficior/configs": "workspace:*",
|
|
36
|
+
"@adeficior/testing": "workspace:*",
|
|
37
|
+
"@types/lodash-es": "catalog:"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"json5": "^2.2.3",
|
|
41
|
+
"lodash-es": "catalog:",
|
|
42
|
+
"minimatch": "catalog:",
|
|
43
|
+
"prettier": "catalog:",
|
|
44
|
+
"zod": "catalog:"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@adeficior/pack-resolver": "catalog:",
|
|
48
|
+
"typescript": "catalog:"
|
|
49
|
+
}
|
|
50
|
+
}
|