-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "prisma-models",
"version": "0.0.2",
"description": "Prisma Models as a Mapped type → Models['User'] and Enums['UserStatus']",
"author": "Batyr <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc && echo Build completed!",
"postbuild": "prettier --write ./dist",
"clean": "rm -rf ./node_modules ./package-lock.json && yarn",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"release:github": "npm run build && dotenv release-it",
"release:npm:public": "npm run build && npm publish --access public",
"release:npm:private": "npm run build && npm publish",
"publish:npm": "npm run build && npm publish",
"publish:npm:next": "npm run build && npm publish --tag next"
},
"devDependencies": {
"@types/node": "^20.12.11",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"license": "MIT"
}