@factor-wise/prisma-schema 1.0.0 → 1.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/package.json CHANGED
@@ -1,12 +1,29 @@
1
1
  {
2
2
  "name": "@factor-wise/prisma-schema",
3
- "version": "1.0.0",
4
- "main": "index.js",
3
+ "version": "1.0.1",
4
+ "description": "Shared Prisma schema and generated client for Factor Wise projects",
5
+ "main": "generated/client/index.js",
6
+ "types": "generated/client/index.d.ts",
5
7
  "scripts": {
6
- "test": "echo \"Error: no test specified\" && exit 1"
8
+ "generate": "prisma generate",
9
+ "build": "npm run generate",
10
+ "prepublishOnly": "npm run build",
11
+ "test": "echo \"No tests configured\" && exit 0"
7
12
  },
8
- "keywords": [],
9
- "author": "",
13
+ "keywords": [
14
+ "prisma",
15
+ "schema",
16
+ "shared",
17
+ "nestjs",
18
+ "database",
19
+ "factor-wise"
20
+ ],
21
+ "author": "Factor Wise",
10
22
  "license": "ISC",
11
- "description": ""
23
+ "dependencies": {
24
+ "@prisma/client": "^6.16.2"
25
+ },
26
+ "devDependencies": {
27
+ "prisma": "^6.16.2"
28
+ }
12
29
  }