@superbright/indexeddb-orm 1.0.35 → 1.0.37

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 +21 -19
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@superbright/indexeddb-orm",
3
- "version": "1.0.35",
4
- "description": "Vite + TypeScript starter for an IndexedDB ORM (Dexie + Zod) with playground.",
3
+ "version": "1.0.37",
4
+ "description": "Vite + TypeScript IndexedDB ORM.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs.js",
@@ -28,6 +28,24 @@
28
28
  "files": [
29
29
  "dist"
30
30
  ],
31
+ "scripts": {
32
+ "clean": "rimraf dist",
33
+ "build": "pnpm clean && vite build && tsc -p tsconfig.build.json",
34
+ "prepare": "pnpm build",
35
+ "start": "vite --clearScreen false",
36
+ "dev": "concurrently -k -n PLAY,BUILD \"pnpm:start\" \"pnpm:watch\"",
37
+ "watch": "concurrently -k -n TYPES,BUNDLE \"pnpm:watch:types\" \"pnpm:watch:bundle\"",
38
+ "watch:types": "tsc -w -p tsconfig.build.json",
39
+ "watch:bundle": "vite build --watch",
40
+ "test": "vitest run",
41
+ "test:watch": "vitest",
42
+ "format": "pnpm format:write",
43
+ "format:write": "prettier --write .",
44
+ "format:check": "prettier --check .",
45
+ "docs:api": "typedoc --plugin typedoc-plugin-markdown --entryPoints src/docs/property.ts src/docs/unit.ts src/docs/filters.ts --tsconfig tsconfig.json --out autodocs/docs/api/schema --readme none"
46
+ ,
47
+ "analyze": "pnpm clean && ANALYZE=1 vite build && tsc -p tsconfig.build.json"
48
+ },
31
49
  "dependencies": {
32
50
  "dexie": "^4.0.8",
33
51
  "zod": "^3.23.8"
@@ -68,21 +86,5 @@
68
86
  "posthog-js": {
69
87
  "optional": true
70
88
  }
71
- },
72
- "scripts": {
73
- "clean": "rimraf dist",
74
- "build": "pnpm clean && vite build && tsc -p tsconfig.build.json",
75
- "start": "vite --clearScreen false",
76
- "dev": "concurrently -k -n PLAY,BUILD \"pnpm:start\" \"pnpm:watch\"",
77
- "watch": "concurrently -k -n TYPES,BUNDLE \"pnpm:watch:types\" \"pnpm:watch:bundle\"",
78
- "watch:types": "tsc -w -p tsconfig.build.json",
79
- "watch:bundle": "vite build --watch",
80
- "test": "vitest run",
81
- "test:watch": "vitest",
82
- "format": "pnpm format:write",
83
- "format:write": "prettier --write .",
84
- "format:check": "prettier --check .",
85
- "docs:api": "typedoc --plugin typedoc-plugin-markdown --entryPoints src/docs/property.ts src/docs/unit.ts src/docs/filters.ts --tsconfig tsconfig.json --out autodocs/docs/api/schema --readme none",
86
- "analyze": "pnpm clean && ANALYZE=1 vite build && tsc -p tsconfig.build.json"
87
89
  }
88
- }
90
+ }