-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@prevalentware/prisma-cosmo",
"version": "0.1.33",
"description": "Prisma GraphQL generator",
"main": "./lib/index.js",
"author": "prevalentWare",
"license": "MIT",
"keywords": [
"prisma",
"graphql",
"sdl-first"
],
"files": [
"lib/"
],
"bin": {
"cosmo": "./lib/index.js"
},
"scripts": {
"create": "npm run build && npm run test",
"start": "ts-node src/index.ts && prettier --config .prettierrc ./prisma/generated/**/*.ts --write",
"cosmo": "bun run start && prettier --config .prettierrc ./prisma/generated/**/*.ts --write",
"build": "rimraf lib && tsc -p . --newLine lf",
"publish": "npm publish --access public"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/node": "^22.5.4",
"@types/rimraf": "^3.0.2"
},
"dependencies": {
"chalk": "4.1.2",
"clear": "^0.1.0",
"commander": "^9.0.0",
"figlet": "^1.5.2",
"graphql-import-node": "^0.0.5",
"graphql-tools": "^8.3.6",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
}
}