-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "@sinm/monaco-plantuml",
"version": "0.5.6",
"description": "PlantUML extension for monaco editor with better intellisense",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "pansinm <[email protected]>",
"license": "MIT",
"dependencies": {
"dexie": "^3.2.2",
"lodash": "^4.17.21",
"monaco-editor": "*",
"ohm-js": "^16.4.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/node-fetch": "2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"css-loader": "^6.7.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"node-fetch": "2",
"plantuml-encoder": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"test": "jest",
"start": "webpack serve",
"prepublishOnly": "tsc"
},
"publishConfig": {
"repository": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"src",
"lib",
"screenshot.gif"
]
}