@hirelink/database-prisma 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 +14 -5
- package/.npmignore +0 -0
package/package.json
CHANGED
@@ -1,19 +1,28 @@
|
|
1
1
|
{
|
2
2
|
"name": "@hirelink/database-prisma",
|
3
|
-
"version": "1.0.
|
4
|
-
"description": "",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "A Prisma-based database package for Hirelink applications.",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
7
7
|
"prisma:generate": "npx prisma format && npx prisma generate",
|
8
8
|
"prisma:migrate:dev": "npx prisma migrate dev",
|
9
9
|
"prisma:migrate:deploy": "npx prisma migrate deploy"
|
10
10
|
},
|
11
|
+
"keywords": [
|
12
|
+
"prisma",
|
13
|
+
"database",
|
14
|
+
"hirelink"
|
15
|
+
],
|
16
|
+
"repository": {
|
17
|
+
"type": "git",
|
18
|
+
"url": "https://github.com/yourusername/your-repo.git"
|
19
|
+
},
|
20
|
+
"author": "Your Name <your.email@example.com>",
|
21
|
+
"license": "ISC",
|
11
22
|
"dependencies": {
|
12
23
|
"@prisma/client": "^6.3.1"
|
13
24
|
},
|
14
25
|
"devDependencies": {
|
15
26
|
"prisma": "^6.3.1"
|
16
|
-
}
|
17
|
-
"author": "",
|
18
|
-
"license": "ISC"
|
27
|
+
}
|
19
28
|
}
|
package/.npmignore
DELETED
File without changes
|