@prisma-next/contract-ts 0.0.1

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/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @prisma-next/contract-ts
2
+
3
+ **Status:** Scaffolded placeholder package (future)
4
+
5
+ This package will contain the TypeScript authoring surface for Prisma Next.
6
+
7
+ ## Overview
8
+
9
+ This package is part of the authoring ring and will provide TypeScript-based contract authoring capabilities.
10
+
11
+ ## Package Status
12
+
13
+ This package is currently a placeholder for future implementation. It was created during the package layering scaffolding phase to signal the intended structure.
14
+
15
+ ## Responsibilities
16
+
17
+ - **TypeScript Authoring Surface**: Will provide a TypeScript-based contract authoring API
18
+ - **Contract Builder**: Will provide builder functions for creating contracts programmatically in TypeScript
19
+ - **Authoring Integration**: Will integrate with the contract authoring system to support TypeScript-based contract creation
20
+
21
+ ## Dependencies
22
+
23
+ This package is currently a placeholder with no dependencies. When implemented, it will likely depend on:
24
+ - **`@prisma-next/contract`**: Core contract types
25
+ - **`@prisma-next/contract-authoring`**: Authoring builder core
26
+
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@prisma-next/contract-ts",
3
+ "version": "0.0.1",
4
+ "type": "module",
5
+ "sideEffects": false,
6
+ "description": "TypeScript authoring surface for Prisma Next (future)",
7
+ "devDependencies": {
8
+ "tsup": "^8.3.0",
9
+ "typescript": "^5.9.3"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/index.js"
18
+ }
19
+ },
20
+ "scripts": {
21
+ "build": "tsup --config tsup.config.ts",
22
+ "typecheck": "tsc --project tsconfig.json --noEmit",
23
+ "lint": "biome check . --config-path ../../../../biome.json --error-on-warnings",
24
+ "clean": "node ../../../../scripts/clean.mjs"
25
+ }
26
+ }