@prisma/studio-core 0.0.0-dev.202512151033 → 0.0.0-dev.202512151731
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/NOTICE +8 -0
- package/{README.md.free → README.md} +3 -1
- package/package.json +8 -9
- package/LICENSE.licensed +0 -4
- /package/{LICENSE.free → LICENSE} +0 -0
package/NOTICE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
This software includes brand elements owned by Prisma Data, Inc.
|
|
2
|
+
|
|
3
|
+
Use in production is permitted under the Apache 2.0 license, provided that Prisma branding is preserved.
|
|
4
|
+
|
|
5
|
+
You may not remove or obscure logos, UI marks, or references to Prisma unless you have purchased a commercial license.
|
|
6
|
+
|
|
7
|
+
See: https://www.prisma.io/terms
|
|
8
|
+
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# @prisma/studio-core
|
|
2
|
+
|
|
1
3
|
## License
|
|
2
4
|
|
|
3
5
|
Embeddable Prisma Studio (Free) is licensed under [Apache 2.0](./LICENSE).
|
|
@@ -9,4 +11,4 @@ Embeddable Prisma Studio (Free) is licensed under [Apache 2.0](./LICENSE).
|
|
|
9
11
|
## Telemetry
|
|
10
12
|
|
|
11
13
|
This package includes anonymized telemetry to help us improve Prisma Studio.
|
|
12
|
-
Use implies consent. Learn more in our [Privacy Policy](https://www.prisma.io/privacy).
|
|
14
|
+
Use implies consent. Learn more in our [Privacy Policy](https://www.prisma.io/privacy).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/studio-core",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.202512151731",
|
|
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": "
|
|
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:
|
|
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
|
-
"
|
|
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
|
-
"
|
|
233
|
+
"typecheck": "tsc"
|
|
235
234
|
}
|
|
236
235
|
}
|
package/LICENSE.licensed
DELETED
|
File without changes
|