-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "try-prisma",
"version": "0.0.0-semantically-released",
"description": "A CLI tool to help get you up and running with any Prisma example project.",
"repository": {
"type": "git",
"url": "https://github.com/prisma/try-prisma"
},
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist"
],
"bin": {
"try-prisma": "./dist/index.js"
},
"scripts": {
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.js\"",
"build": "tsup src/index.ts --format esm --clean --sourcemap --minify --metafile",
"local": "npm run build && npm i -g && npx try-prisma",
"format": "prettier --write --plugin-search-dir=. \"**/*.{ts,tsx}\"",
"format:check": "prettier --check --plugin-search-dir=. \"**/*.{ts,tsx}\"",
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"check": "npm run format:check && npm run lint && npm run test",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"prepare": "husky install"
},
"keywords": [
"prisma",
"cli",
"database",
"typescript",
"javascript"
],
"author": "Sabin Adams",
"license": "MIT",
"publishConfig": {
"provenance": true
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/tar-fs": "2.0.1",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"@vitest/ui": "0.23.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.23.0",
"husky": "8.0.1",
"prettier": "2.7.1",
"semantic-release": "^24.2.0",
"tsup": "6.2.3",
"typescript": "4.8.3",
"vitest": "0.23.1"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"@molt/command": "^0.7.0",
"chalk": "^5.0.1",
"gunzip-maybe": "^1.4.2",
"ora": "^6.1.2",
"tar-fs": "^3.0.6",
"valid-filename": "^4.0.0",
"zod": "^3.21.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}