@bricks-toolkit/toolkit 0.1.5 → 0.1.7
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/{chunk-AWBKO57C.mjs → chunk-EL7COTGN.mjs} +17 -2
- package/dist/{chunk-Y3Y44KJ4.cjs → chunk-YK7IS7JL.cjs} +17 -2
- package/dist/header/index.cjs +5 -2
- package/dist/header/index.mjs +4 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +1 -1
- package/dist/styles.css +62 -4862
- package/package.json +20 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bricks-toolkit/toolkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Micro-modularized, fully independent, type-safe UI component library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ITProfound",
|
|
@@ -372,6 +372,24 @@
|
|
|
372
372
|
"README.md",
|
|
373
373
|
"LICENSE"
|
|
374
374
|
],
|
|
375
|
+
"scripts": {
|
|
376
|
+
"storybook": "storybook dev -p 6006 --no-version-updates",
|
|
377
|
+
"build": "tsup",
|
|
378
|
+
"build:watch": "tsup --watch",
|
|
379
|
+
"build:storybook": "storybook build",
|
|
380
|
+
"test": "vitest run",
|
|
381
|
+
"test:watch": "vitest",
|
|
382
|
+
"test:coverage": "vitest run --coverage",
|
|
383
|
+
"lint": "eslint .",
|
|
384
|
+
"lint:fix": "eslint . --fix",
|
|
385
|
+
"format": "prettier --write .",
|
|
386
|
+
"format:check": "prettier --check .",
|
|
387
|
+
"typecheck": "tsc --noEmit",
|
|
388
|
+
"validate": "pnpm typecheck && pnpm lint && pnpm test",
|
|
389
|
+
"clean": "rimraf dist",
|
|
390
|
+
"prepare": "husky",
|
|
391
|
+
"audit": "pnpm audit"
|
|
392
|
+
},
|
|
375
393
|
"devDependencies": {
|
|
376
394
|
"@eslint/js": "10.0.1",
|
|
377
395
|
"@storybook/addon-a11y": "10.3.5",
|
|
@@ -443,22 +461,5 @@
|
|
|
443
461
|
},
|
|
444
462
|
"dependencies": {
|
|
445
463
|
"@heroicons/react": "2.2.0"
|
|
446
|
-
},
|
|
447
|
-
"scripts": {
|
|
448
|
-
"storybook": "storybook dev -p 6006 --no-version-updates",
|
|
449
|
-
"build": "tsup",
|
|
450
|
-
"build:watch": "tsup --watch",
|
|
451
|
-
"build:storybook": "storybook build",
|
|
452
|
-
"test": "vitest run",
|
|
453
|
-
"test:watch": "vitest",
|
|
454
|
-
"test:coverage": "vitest run --coverage",
|
|
455
|
-
"lint": "eslint .",
|
|
456
|
-
"lint:fix": "eslint . --fix",
|
|
457
|
-
"format": "prettier --write .",
|
|
458
|
-
"format:check": "prettier --check .",
|
|
459
|
-
"typecheck": "tsc --noEmit",
|
|
460
|
-
"validate": "pnpm typecheck && pnpm lint && pnpm test",
|
|
461
|
-
"clean": "rimraf dist",
|
|
462
|
-
"audit": "pnpm audit"
|
|
463
464
|
}
|
|
464
|
-
}
|
|
465
|
+
}
|