@prisma-next/operations 0.1.0-dev.3 → 0.1.0-dev.30

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -5
package/README.md CHANGED
@@ -94,7 +94,7 @@ This package is part of the **framework domain**, **core layer**, **shared plane
94
94
  - **Domain**: framework (target-agnostic)
95
95
  - **Layer**: core
96
96
  - **Plane**: shared
97
- - **Path**: `packages/framework/core-operations`
97
+ - **Path**: `packages/1-framework/1-core/shared/operations`
98
98
 
99
99
  ## Related Documentation
100
100
 
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@prisma-next/operations",
3
- "version": "0.1.0-dev.3",
3
+ "version": "0.1.0-dev.30",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Target-neutral operation registry and capability helpers for Prisma Next",
7
7
  "dependencies": {
8
- "@prisma-next/plan": "0.1.0-dev.3"
8
+ "@prisma-next/plan": "0.1.0-dev.30"
9
9
  },
10
10
  "devDependencies": {
11
+ "@vitest/coverage-v8": "^4.0.0",
11
12
  "tsup": "^8.3.0",
12
13
  "typescript": "^5.9.3",
13
- "vitest": "^2.1.1",
14
+ "vitest": "^4.0.16",
14
15
  "@prisma-next/test-utils": "0.0.1"
15
16
  },
16
17
  "files": [
@@ -27,7 +28,9 @@
27
28
  "test": "vitest run --passWithNoTests",
28
29
  "test:coverage": "vitest run --coverage --passWithNoTests",
29
30
  "typecheck": "tsc --project tsconfig.json --noEmit",
30
- "lint": "biome check . --config-path ../../../biome.json --error-on-warnings",
31
- "clean": "node ../../../scripts/clean.mjs"
31
+ "lint": "biome check . --config-path ../../../../../biome.json --error-on-warnings",
32
+ "lint:fix": "biome check --write . --config-path ../../../biome.json",
33
+ "lint:fix:unsafe": "biome check --write --unsafe . --config-path ../../../biome.json",
34
+ "clean": "node ../../../../../scripts/clean.mjs"
32
35
  }
33
36
  }