-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.49 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
71
72
73
74
75
76
77
78
79
{
"name": "monaco-xsd-code-completion",
"version": "1.0.0",
"description": "A library to add XSD-based code completion and validation to the Monaco Editor.",
"main": "dist/MonacoXsdCodeCompletion.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"watch:cjs": "tsc -p tsconfig.cjs.json --watch",
"watch:esm": "tsc -p tsconfig.esm.json --watch",
"watch:umd": "webpack --watch",
"clean": "rimraf ./lib ./esm ./umd",
"build": "npm-run-all clean build:cjs build:esm build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philipsens/monaco-xsd-code-completion.git"
},
"files": [
"esm",
"lib",
"umd",
"src"
],
"keywords": [
"xml",
"xsd",
"monaco",
"intelliSense",
"code completion",
"validation"
],
"author": "Sergi Philipsen <philipsen.sergi@gmail.com> (https://philipsens.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/philipsens/monaco-xsd-code-completion/issues"
},
"homepage": "https://github.com/philipsens/monaco-xsd-code-completion#readme",
"dependencies": {
"@xmldom/xmldom": "^0.8.11",
"prettier": "^3.8.1",
"ts-debounce": "^4.0.0",
"turndown": "^7.2.2"
},
"devDependencies": {
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"css-loader": "^7.1.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.5",
"monaco-editor": "^0.55.1",
"monaco-editor-core": "^0.55.1",
"npm-run-all2": "^8.0.4",
"pretty-quick": "^4.2.2",
"rimraf": "^6.1.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"resolutions": {
"dompurify": ">=3.3.2",
"ajv": "^8.17.1",
"brace-expansion": "^2.0.1",
"braces": "^3.0.3",
"cross-spawn": "^7.0.6",
"glob-parent": "^6.0.2",
"lodash": "^4.17.21",
"micromatch": "^4.0.8",
"minimist": "^1.2.8",
"semver": "^7.6.3"
}
}