@digitalsee-ai/rcs 1.0.0 → 1.0.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 CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@digitalsee-ai/rcs",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
+ "packageManager": "pnpm@10.12.1",
4
5
  "repository": {
5
6
  "type": "git"
6
7
  },
@@ -18,6 +19,28 @@
18
19
  "engines": {
19
20
  "node": ">=22"
20
21
  },
22
+ "scripts": {
23
+ "dev": "storybook dev -p 8888",
24
+ "build": "storybook build",
25
+ "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
26
+ "build:lib": "pnpm clean && tsc && vite build",
27
+ "build:vite": "pnpm clean && vite build",
28
+ "lint": "npx @biomejs/biome lint --write ./src",
29
+ "format": "npx @biomejs/biome format --write ./src",
30
+ "format:check": "npx @biomejs/biome format ./src",
31
+ "check": "npx @biomejs/biome check --write ./src",
32
+ "check:all": "node scripts/check-all.js",
33
+ "lint-staged": "lint-staged",
34
+ "prepare": "husky",
35
+ "test": "vitest",
36
+ "test:cov": "vitest run --coverage",
37
+ "tsc": "tsc --noEmit",
38
+ "pub": "npm publish --registry",
39
+ "bump": "npm version patch",
40
+ "bump:minor": "npm version minor",
41
+ "bump:major": "npm version major",
42
+ "update:version": "npm run build:vite && npm run pub"
43
+ },
21
44
  "peerDependencies": {
22
45
  "@ant-design/icons": ">=4.8.0",
23
46
  "@ant-design/pro-components": ">=2.0.0",
@@ -121,26 +144,5 @@
121
144
  "vite": "6.3.5",
122
145
  "vite-plugin-dts": "4.5.4",
123
146
  "vitest": "3.2.4"
124
- },
125
- "scripts": {
126
- "dev": "storybook dev -p 8888",
127
- "build": "storybook build",
128
- "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
129
- "build:lib": "pnpm clean && tsc && vite build",
130
- "build:vite": "pnpm clean && vite build",
131
- "lint": "npx @biomejs/biome lint --write ./src",
132
- "format": "npx @biomejs/biome format --write ./src",
133
- "format:check": "npx @biomejs/biome format ./src",
134
- "check": "npx @biomejs/biome check --write ./src",
135
- "check:all": "node scripts/check-all.js",
136
- "lint-staged": "lint-staged",
137
- "test": "vitest",
138
- "test:cov": "vitest run --coverage",
139
- "tsc": "tsc --noEmit",
140
- "pub": "npm publish --registry",
141
- "bump": "npm version patch",
142
- "bump:minor": "npm version minor",
143
- "bump:major": "npm version major",
144
- "update:version": "npm run build:vite && npm run pub"
145
147
  }
146
- }
148
+ }