-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@shizuoka-its/core",
"version": "1.1.0",
"description": "ITS core library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/su-its/core.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"prisma"
],
"scripts": {
"postinstall": "npx prisma generate",
"build": "tsc",
"prebuild": "rimraf dist",
"prepare": "npm run build",
"prisma:generate": "npx prisma generate",
"version:patch": "npm version patch && npm run publish:latest",
"version:minor": "npm version minor && npm run publish:latest",
"version:major": "npm version major && npm run publish:latest",
"version:alpha": "npm version prerelease --preid=alpha && npm run publish:alpha",
"version:beta": "npm version prerelease --preid=beta && npm run publish:beta",
"version:rc": "npm version prerelease --preid=rc && npm run publish:rc",
"publish:latest": "npm publish --tag latest",
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta",
"publish:rc": "npm publish --tag rc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.9.0",
"prisma": "^5.22.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@prisma/client": "^5.22.0"
}
}