-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "prettier-plugin-sql",
"version": "0.18.1",
"type": "module",
"description": "An opinionated sql formatter plugin for Prettier",
"repository": "[email protected]/un-ts/prettier.git",
"homepage": "https://github.com/un-ts/prettier/tree/master/packages/sql",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"files": [
"lib",
"shim.d.ts"
],
"keywords": [
"sql",
"big-query",
"db2",
"flink-sql",
"hive",
"maria-db",
"mysql",
"n1ql",
"pl-sql",
"postgre-sql",
"redshift",
"transact-sql",
"tsql",
"plugin",
"prettier",
"prettier-plugin"
],
"peerDependencies": {
"prettier": "^3.0.3"
},
"dependencies": {
"jsox": "^1.2.119",
"node-sql-parser": "^4.12.0",
"sql-formatter": "^15.0.2",
"tslib": "^2.6.3"
},
"publishConfig": {
"access": "public"
}
}