-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.63 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.63 KB
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
{
"name": "prettier-plugin-dbml",
"version": "0.6.1",
"description": "A `prettier` plugin for DBML",
"license": "MIT",
"author": {
"name": "Eric Chen"
},
"keywords": [
"database",
"dbml",
"prettier",
"prettier-plugin",
"schema",
"sql"
],
"homepage": "https://www.npmjs.com/package/prettier-plugin-dbml",
"repository": {
"type": "git",
"url": "git+https://github.com/nice-move/prettier-plugin-dbml.git"
},
"bugs": {
"url": "https://github.com/nice-move/prettier-plugin-dbml/issues"
},
"main": "lib/index.mjs",
"files": [],
"type": "module",
"scripts": {
"lint:eslint": "eslint . --quiet --fix --concurrency=auto",
"lint:staged": "nice-move lint staged",
"lint:type": "tsc -p tsconfig.json",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm run lint:type && pnpm test",
"snapshot": "ava --fail-fast -u",
"test": "ava --fail-fast"
},
"dependencies": {
"@dbml/core": "^6.4.0"
},
"devDependencies": {
"@bring-it/cli": "^0.11.1",
"@bring-it/npm": "^0.9.3",
"@nice-move/all-in-base": "^0.6.41",
"ava": "^7.0.0",
"eslint": "^9.39.4",
"garou": "^0.9.17",
"prettier": "~3.8.1",
"typescript": "~5.9.3"
},
"peerDependencies": {
"prettier": "^3.8.1"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20.0.0",
"pnpm": "^10.30.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"ava": {
"extensions": [
"mts",
"mjs"
],
"workerThreads": false
},
"prettier": "@nice-move/prettier-config"
}