-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 2.75 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
{
"name": "@placatus/twx-monaco-editor",
"packageName": "MonacoScriptEditor",
"version": "1.26.1",
"description": "Replaces the out of the box code editor in the old composer with a new one.",
"author": "[email protected]",
"minimumThingWorxVersion": "6.0.0",
"homepage": "https://github.com/ptc-iot-sharing/MonacoEditorTWX",
"autoUpdate": {
"giteaURL": "https://api.github.com/repos/ptc-iot-sharing/MonacoEditorTWX/releases/latest"
},
"repository": {
"type": "git",
"url": "https://github.com/ptc-iot-sharing/MonacoEditorTWX.git"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"files": [
"/src",
"/build",
"/Entities"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"buildDev": "webpack --mode development",
"watch": "webpack --watch --mode development",
"server": "webpack serve",
"upload": "webpack --mode development --env upload",
"prepublishOnly": "rm -rf dist && mkdir dist && yarn run buildDev && mv zip/* dist && yarn run build && mv zip/* dist"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.23.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@types/jquery": "^3.5.29",
"@types/node": "^20.11.17",
"@types/webpack-env": "^1.18.4",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.2",
"esbuild-loader": "^4.0.3",
"esbuild-register": "^3.5.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-encoding-plugin": "^0.3.1",
"xml2js": "^0.6.2",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@types/prettier": "^3.0.0",
"common-tags": "^1.8.2",
"monaco-editor": "^0.46.0",
"prettier": "^3.2.5",
"tingle.js": "^0.16.0",
"typescriptwebpacksupport": "^2.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}