-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
89 lines (89 loc) · 2.24 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
82
83
84
85
86
87
88
89
{
"name": "monaco-sql-languages",
"version": "0.12.2",
"description": "SQL languages for the Monaco Editor, based on monaco-languages.",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf ./esm && tsc -p ./tsconfig.esm.json",
"build-amd": "rm -rf ./out && tsc -p ./tsconfig.amd.json",
"watch-esm": "tsc -p ./tsconfig.esm.json --watch",
"test": "npm run build-amd && mocha ./test/all.js",
"dev": "node --max_old_space_size=4092 & cd website && npm run dev",
"prod": "rm -rf ./docs && node --max_old_space_size=4092 & cd website && npm run build",
"deploy": "npm run build && npm run prod && gh-pages -d docs -r git@github.com:DTStack/monaco-sql-languages.git",
"format": "prettier --write .",
"prettier-check": "prettier --check .",
"check-types": "tsc -p ./tsconfig.json",
"release": "node ./scripts/bumpVersion.js"
},
"author": "DTStack Corporation",
"license": "MIT",
"main": "esm/main.js",
"module": "esm/main.js",
"types": "esm/main.d.ts",
"files": [
"esm"
],
"keywords": [
"monaco-editor",
"SQL",
"code-completion",
"hive",
"spark",
"mysql",
"postgresql",
"flink",
"trino",
"impala"
],
"repository": {
"type": "git",
"url": "https://github.com/DTStack/monaco-sql-languages.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@commitlint/cz-commitlint": "^17.7.2",
"@types/mocha": "^9.1.0",
"@types/node": "^20.4.0",
"commitizen": "^4.3.0",
"fast-glob": "^3.3.2",
"gh-pages": "^3.2.3",
"inquirer": "^8.2.2",
"jsdom": "^16.4.0",
"mocha": "^9.2.0",
"monaco-editor": "0.31.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"requirejs": "^2.3.6",
"simple-git-hooks": "^2.11.1",
"standard-version": "^9.5.0",
"typescript": "^5.0.4"
},
"simple-git-hooks": {
"pre-commit": "npx pretty-quick --staged"
},
"dependencies": {
"dt-sql-parser": "4.0.2"
},
"peerDependencies": {
"monaco-editor": ">=0.31.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.7.0",
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
]
}
}