-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
81 lines (81 loc) · 2 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
74
75
76
77
78
79
80
81
{
"version": "0.12.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"test:watch": "dts test --watch",
"lint": "eslint src",
"prepare": "dts build",
"size": "NODE_OPTIONS=--openssl-legacy-provider size-limit",
"publish-better": "npx np"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "eslint src"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@mrleebo/prisma-ast",
"author": "Jeremy Liberman",
"module": "dist/prisma-ast.esm.js",
"size-limit": [
{
"path": "dist/prisma-ast.cjs.production.min.js",
"limit": "56 KB"
},
{
"path": "dist/prisma-ast.esm.js",
"limit": "56 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.6",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dts-cli": "^2.0.3",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"jest": "^29.6.0",
"prettier": "^2.8.8",
"size-limit": "^8.2.6",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^5.1.6"
},
"dependencies": {
"chevrotain": "^10.5.0",
"lilconfig": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"description": "This library uses an abstract syntax tree to parse schema.prisma files into an object in JavaScript. It is similar to [@prisma/sdk](https://github.com/prisma/prisma/tree/master/src/packages/sdk) except that it preserves comments and model attributes.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrLeebo/prisma-ast.git"
},
"bugs": {
"url": "https://github.com/MrLeebo/prisma-ast/issues"
},
"homepage": "https://github.com/MrLeebo/prisma-ast#readme"
}