miragejs-orm 0.1.0 → 1.0.0-next.0

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 +20 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miragejs-orm",
3
- "version": "0.1.0",
3
+ "version": "1.0.0-next.0",
4
4
  "description": "A modern, type-safe rework of MirageJS focusing on ORM capabilities with a fresh API and the same philosophy.",
5
5
  "keywords": [
6
6
  "miragejs",
@@ -35,26 +35,9 @@
35
35
  "files": [
36
36
  "lib/dist/"
37
37
  ],
38
- "scripts": {
39
- "check:lint": "eslint lib/src --ext .ts",
40
- "check:format": "prettier --check \"lib/src/**/*.ts\"",
41
- "check:types": "tsc --noEmit",
42
- "check:all": "pnpm check:lint && pnpm check:format && pnpm check:types",
43
- "fix:lint": "pnpm check:lint --fix",
44
- "fix:format": "prettier --write \"lib/src/**/*.ts\"",
45
- "fix:all": "pnpm fix:lint && pnpm fix:format",
46
- "test": "vitest run",
47
- "test:types": "vitest run --typecheck",
48
- "test:all": "pnpm test:types && pnpm test",
49
- "test:watch": "vitest",
50
- "build": "tsup lib/src/index.ts --dts --out-dir lib/dist",
51
- "build:checks": "pnpm check:all && pnpm test:all && pnpm build",
52
- "prepack": "pnpm build",
53
- "release": "pnpm build && changeset publish"
54
- },
55
38
  "publishConfig": {
56
39
  "access": "public",
57
- "provenance": false
40
+ "provenance": true
58
41
  },
59
42
  "devDependencies": {
60
43
  "@changesets/changelog-github": "^0.5.1",
@@ -80,5 +63,21 @@
80
63
  "engines": {
81
64
  "node": ">=18"
82
65
  },
83
- "sideEffects": false
84
- }
66
+ "sideEffects": false,
67
+ "scripts": {
68
+ "check:lint": "eslint lib/src --ext .ts",
69
+ "check:format": "prettier --check \"lib/src/**/*.ts\"",
70
+ "check:types": "tsc --noEmit",
71
+ "check:all": "pnpm check:lint && pnpm check:format && pnpm check:types",
72
+ "fix:lint": "pnpm check:lint --fix",
73
+ "fix:format": "prettier --write \"lib/src/**/*.ts\"",
74
+ "fix:all": "pnpm fix:lint && pnpm fix:format",
75
+ "test": "vitest run",
76
+ "test:types": "vitest run --typecheck",
77
+ "test:all": "pnpm test:types && pnpm test",
78
+ "test:watch": "vitest",
79
+ "build": "tsup lib/src/index.ts --dts --out-dir lib/dist",
80
+ "build:checks": "pnpm check:all && pnpm test:all && pnpm build",
81
+ "release": "pnpm build && changeset publish"
82
+ }
83
+ }