smartrte-react 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smartrte-react",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -9,6 +9,18 @@
9
9
  "dist",
10
10
  "README.md"
11
11
  ],
12
+ "scripts": {
13
+ "build": "tsc -p tsconfig.json",
14
+ "build:embed": "vite build",
15
+ "build:all": "pnpm run build && pnpm run build:embed",
16
+ "prepublishOnly": "pnpm run build:all",
17
+ "dev": "pnpm build",
18
+ "lint": "eslint . || true",
19
+ "test": "vitest run || true",
20
+ "storybook": "storybook dev -p 6006",
21
+ "build-storybook": "storybook build",
22
+ "e2e": "playwright test || true"
23
+ },
12
24
  "publishConfig": {
13
25
  "access": "public"
14
26
  },
@@ -30,16 +42,5 @@
30
42
  "@playwright/test": "^1.48.2",
31
43
  "react": "18.3.1",
32
44
  "react-dom": "18.3.1"
33
- },
34
- "scripts": {
35
- "build": "tsc -p tsconfig.json",
36
- "build:embed": "vite build",
37
- "build:all": "pnpm run build && pnpm run build:embed",
38
- "dev": "pnpm build",
39
- "lint": "eslint . || true",
40
- "test": "vitest run || true",
41
- "storybook": "storybook dev -p 6006",
42
- "build-storybook": "storybook build",
43
- "e2e": "playwright test || true"
44
45
  }
45
- }
46
+ }