@easemate/web-kit 0.1.0 → 0.1.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 +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easemate/web-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Web components for easemate - a UI kit for animation libraries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"clean": "rm -rf build",
|
|
16
|
-
"build": "npm run clean && zshy",
|
|
16
|
+
"build": "npm run clean && zshy && tsc-alias -p tsconfig.json",
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"test:watch": "vitest",
|
|
19
19
|
"lint": "biome check src test",
|
|
@@ -92,5 +92,8 @@
|
|
|
92
92
|
},
|
|
93
93
|
"main": "./build/index.cjs",
|
|
94
94
|
"types": "./build/index.d.cts",
|
|
95
|
-
"module": "./build/index.js"
|
|
95
|
+
"module": "./build/index.js",
|
|
96
|
+
"devDependencies": {
|
|
97
|
+
"tsc-alias": "^1.8.16"
|
|
98
|
+
}
|
|
96
99
|
}
|