-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.61 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
{
"name": "prettier-plugin-dbml",
"version": "0.4.2",
"description": "A `prettier` plugin for DBML",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"database",
"dbml",
"prettier",
"prettier-plugin",
"schema",
"sql"
],
"homepage": "https://www.npmjs.com/package/prettier-plugin-dbml",
"repository": {
"type": "git",
"url": "https://github.com/nice-move/prettier-plugin-dbml.git"
},
"bugs": {
"url": "https://github.com/nice-move/prettier-plugin-dbml/issues"
},
"main": "dist/index.mjs",
"files": [],
"type": "module",
"scripts": {
"build": "best-shot prod",
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"presnapshot": "pnpm run build",
"snapshot": "ava --fail-fast -u -w",
"pretest": "pnpm run build",
"test": "ava --fail-fast"
},
"dependencies": {
"@dbml/core": "3.9.4"
},
"devDependencies": {
"@bring-it/npm": "^0.5.9",
"@nice-move/all-in-base": "^0.2.14",
"ava": "^6.2.0",
"best-shot": "^0.7.10",
"eslint": "^8.57.1",
"eslint-plugin-ava": "^14.0.0",
"garou": "^0.8.3",
"prettier": "^3.4.2"
},
"peerDependencies": {
"prettier": "^3.4.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"pnpm": "^9.14.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"prettier": "@nice-move/prettier-config"
}