@bricks-toolkit/toolkit 0.1.4 → 0.1.5

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.
Files changed (1) hide show
  1. package/package.json +19 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bricks-toolkit/toolkit",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Micro-modularized, fully independent, type-safe UI component library",
5
5
  "license": "MIT",
6
6
  "author": "ITProfound",
@@ -372,24 +372,6 @@
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
- },
393
375
  "devDependencies": {
394
376
  "@eslint/js": "10.0.1",
395
377
  "@storybook/addon-a11y": "10.3.5",
@@ -461,5 +443,22 @@
461
443
  },
462
444
  "dependencies": {
463
445
  "@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"
464
463
  }
465
- }
464
+ }