@prisma/studio-core 0.8.2 → 0.9.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/studio-core",
3
- "version": "0.8.2",
3
+ "version": "0.9.0",
4
4
  "description": "Modular Prisma Studio components",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -148,7 +148,7 @@
148
148
  "url": "https://github.com/uixmat"
149
149
  }
150
150
  ],
151
- "license": "UNLICENSED",
151
+ "license": "Apache-2.0",
152
152
  "devDependencies": {
153
153
  "@arethetypeswrong/cli": "0.17.4",
154
154
  "@dnd-kit/core": "6.3.1",
@@ -184,6 +184,7 @@
184
184
  "mysql2": "^3.15.3",
185
185
  "next-themes": "0.4.6",
186
186
  "nuqs": "2.4.1",
187
+ "pathe": "2.0.3",
187
188
  "pkg-types": "2.1.0",
188
189
  "postcss": "8.4.41",
189
190
  "postcss-import": "16.1.0",
@@ -220,17 +221,15 @@
220
221
  },
221
222
  "scripts": {
222
223
  "build": "tsup",
223
- "build:variant:free": "BUILD_VARIANT=free tsx build-variant.ts",
224
- "build:variant:licensed": "BUILD_VARIANT=licensed tsx build-variant.ts",
225
- "dev": "BUILD_VARIANT=licensed tsup --watch",
226
- "dev:variant:free": "BUILD_VARIANT=free tsup --watch",
227
- "dev:variant:licensed": "BUILD_VARIANT=licensed tsup --watch",
224
+ "build:licensed": "BUILD_VARIANT=licensed node --experimental-strip-types scripts/build-licensed.ts",
228
225
  "check:exports": "attw --pack . --profile node16 --exclude-entrypoints ui/index.css",
229
- "typecheck": "tsc",
226
+ "dev": "tsup --watch",
227
+ "dev:licensed": "BUILD_VARIANT=licensed tsup --watch",
230
228
  "lint": "eslint --fix .",
231
229
  "test": "vitest --passWithNoTests",
232
230
  "test:data": "vitest --project data",
231
+ "test:e2e": "vitest --passWithNoTests --project e2e",
233
232
  "test:ui": "vitest --passWithNoTests --project ui",
234
- "test:e2e": "vitest --passWithNoTests --project e2e"
233
+ "typecheck": "tsc"
235
234
  }
236
235
  }
package/LICENSE.licensed DELETED
@@ -1,4 +0,0 @@
1
- Copyright © 2025 Prisma Data, Inc.
2
-
3
- All rights reserved.
4
- This source code is not licensed for use, modification, or distribution.
File without changes