bard-legends-framework 1.12.2 → 1.12.4
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/electron-main.js +1 -1
- package/dist/electron-main.mjs +1 -1
- package/dist/index.d.mts +69 -22
- package/dist/index.d.ts +69 -22
- package/dist/index.js +55 -6
- package/dist/index.mjs +55 -6
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bard-legends-framework",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.4",
|
|
4
4
|
"description": "Bard Legends Framework",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -64,13 +64,15 @@
|
|
|
64
64
|
"clean-install": "cls && rm -rf node_modules && rm -rf package-lock.json && npm run i",
|
|
65
65
|
"i": "npm cache clean --force && npm install",
|
|
66
66
|
"pretest": "cls",
|
|
67
|
-
"test": "vitest run --mode=quick",
|
|
68
|
-
"test-full": "vitest run && npm run check-types",
|
|
67
|
+
"test": "vitest run --mode=quick --project=node --project=browser",
|
|
68
|
+
"test-full": "vitest run --project=node --project=browser && npm run check-types",
|
|
69
|
+
"check-performance": "vitest run --mode=performance --project=performance",
|
|
70
|
+
"update-performance": "vitest run --mode=update-performance --project=performance",
|
|
69
71
|
"build": "npx tsx scripts/generate-mangle-cache.ts && tsc -p tsconfig.build.json && tsup && npx tsx scripts/remove-private-properties-from-build.ts && npm run restart-vitest",
|
|
70
72
|
"restart-vitest": "touch vitest.config.ts",
|
|
71
73
|
"lint": "biome check . --write --max-diagnostics=1 && npm run check-types",
|
|
72
74
|
"check-types": "tsc --noEmit",
|
|
73
|
-
"deploy": "npm run test-full && npm run build && npm publish",
|
|
75
|
+
"deploy": "npm run test-full && npm run build && npm run check-performance && npm publish",
|
|
74
76
|
"prepack": "cp package.json package.json.bak && npx tsx scripts/prepare-package-json.ts",
|
|
75
77
|
"postpack": "mv package.json.bak package.json",
|
|
76
78
|
"info-repos": "tsx scripts/repository-linking.ts info",
|
|
@@ -93,25 +95,26 @@
|
|
|
93
95
|
"write-file-atomic": "7.0.1"
|
|
94
96
|
},
|
|
95
97
|
"peerDependencies": {
|
|
96
|
-
"
|
|
98
|
+
"helpers-lib": "^2.5.2",
|
|
99
|
+
"actions-lib": "^3.5.2",
|
|
100
|
+
"script-engine-lib": "^2.0.0",
|
|
97
101
|
"electron": ">=30.0.0",
|
|
98
|
-
"
|
|
99
|
-
"reflect-metadata": "^0.2.2",
|
|
100
|
-
"script-engine-lib": "^2.0.0"
|
|
102
|
+
"reflect-metadata": "^0.2.2"
|
|
101
103
|
},
|
|
102
104
|
"devDependencies": {
|
|
105
|
+
"repository-linking-lib": "^1.1.3",
|
|
106
|
+
"unit-test-lib": "^1.0.5",
|
|
103
107
|
"@biomejs/biome": "2.5.1",
|
|
104
|
-
"@types/electron-squirrel-startup": "1.0.2",
|
|
105
|
-
"@types/write-file-atomic": "4.0.3",
|
|
106
|
-
"electron": "41.7.0",
|
|
107
108
|
"@memlab/core": "1.1.43",
|
|
108
109
|
"@swc/core": "1.15.18",
|
|
110
|
+
"@types/electron-squirrel-startup": "1.0.2",
|
|
109
111
|
"@types/p2": "0.7.44",
|
|
112
|
+
"@types/write-file-atomic": "4.0.3",
|
|
110
113
|
"@vitest/browser": "4.1.9",
|
|
111
114
|
"@vitest/browser-playwright": "4.1.9",
|
|
115
|
+
"electron": "41.7.0",
|
|
112
116
|
"node-web-audio-api": "2.0.0",
|
|
113
117
|
"playwright": "1.61.0",
|
|
114
|
-
"repository-linking-lib": "1.1.1",
|
|
115
118
|
"tslib": "2.6.2",
|
|
116
119
|
"tsup": "8.5.1",
|
|
117
120
|
"tsx": "4.21.0",
|