@aidc-toolkit/utility 0.9.12-beta → 0.9.13-beta
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/dist/index.cjs +1 -1342
- package/dist/index.js +1 -1288
- package/package.json +7 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aidc-toolkit/utility",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.13-beta",
|
|
4
4
|
"description": "Foundational utilities for AIDC Toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,21 +20,18 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"lint": "eslint .",
|
|
23
|
-
"build
|
|
24
|
-
"build
|
|
23
|
+
"build:core": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
24
|
+
"build:dev": "npm run build:core && tsc src/index.ts --outDir dist --target esnext --moduleResolution nodenext --module nodenext --emitDeclarationOnly --declaration --declarationMap",
|
|
25
|
+
"build:release": "npm run build:core -- --minify",
|
|
26
|
+
"publish-dev": "publish-dev",
|
|
25
27
|
"test": "vitest run"
|
|
26
28
|
},
|
|
27
29
|
"devDependencies": {
|
|
28
|
-
"@aidc-toolkit/dev": "^0.9.
|
|
29
|
-
"eslint": "^9.20.1",
|
|
30
|
-
"jiti": "^2.4.2",
|
|
31
|
-
"ts-node": "^10.9.2",
|
|
32
|
-
"tsup": "^8.3.6",
|
|
33
|
-
"typescript": "^5.7.3",
|
|
30
|
+
"@aidc-toolkit/dev": "^0.9.13-beta",
|
|
34
31
|
"vitest": "^3.0.5"
|
|
35
32
|
},
|
|
36
33
|
"dependencies": {
|
|
37
|
-
"@aidc-toolkit/core": "^0.9.
|
|
34
|
+
"@aidc-toolkit/core": "^0.9.13-beta",
|
|
38
35
|
"i18next": "^24.2.2"
|
|
39
36
|
}
|
|
40
37
|
}
|