@expcat/tigercat-core 0.0.65 → 0.0.67
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.js +4 -733
- package/dist/styles/index.css +2 -0
- package/dist/styles/index.d.ts +2 -0
- package/package.json +9 -7
- package/dist/index.cjs +0 -6090
- package/dist/index.d.cts +0 -7332
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expcat/tigercat-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.67",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core utilities for Tigercat UI library",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,13 +18,15 @@
|
|
|
18
18
|
"main": "./dist/index.js",
|
|
19
19
|
"module": "./dist/index.mjs",
|
|
20
20
|
"types": "./dist/index.d.ts",
|
|
21
|
-
"sideEffects":
|
|
21
|
+
"sideEffects": [
|
|
22
|
+
"**/*.css"
|
|
23
|
+
],
|
|
22
24
|
"exports": {
|
|
23
25
|
".": {
|
|
24
26
|
"types": "./dist/index.d.ts",
|
|
25
|
-
"import": "./dist/index.js"
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
"import": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./style": "./dist/styles/index.css"
|
|
28
30
|
},
|
|
29
31
|
"files": [
|
|
30
32
|
"dist"
|
|
@@ -38,8 +40,8 @@
|
|
|
38
40
|
"typescript": "^5.9.3"
|
|
39
41
|
},
|
|
40
42
|
"scripts": {
|
|
41
|
-
"build": "tsup
|
|
42
|
-
"dev": "tsup
|
|
43
|
+
"build": "tsup --config tsup.config.ts",
|
|
44
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
43
45
|
"clean": "node ../../scripts/rimraf.mjs dist"
|
|
44
46
|
}
|
|
45
47
|
}
|