-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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": "@totvs/tds-webtoolkit",
"displayName": "TDS-WebToolkit",
"description": "Standard UI for TDS products",
"version": "0.0.5",
"license": "Apache-2.0",
"publisher": "TOTVS",
"author": {
"name": "TOTVS",
"email": "tecnologia@totvs.com.br"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"--COMPILE--": "",
"compile": "tsc",
"watch": "tsc -watch",
"copy-files": "npx copyfiles -u 1 src/**/*.css dist/",
"-- BUILD --": "",
"build": "webpack --mode=production",
"---RELEASE---": "",
"release": "npx standard-version",
"tag": "git push --follow-tags",
"to_publish": "npm publish",
"-prepublishOnly": "npm run clean && npm run build",
"---MISC---": ""
},
"dependencies": {
"@vscode/codicons": "^0.0.35",
"@vscode/webview-ui-toolkit": "^1.4.0",
"react-hook-form": "^7.51.4",
"typescript-plugin-css-modules": "^5.1.0"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/vscode": "^1.89.0",
"@types/vscode-webview": "^1.57.5",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^7.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-stream": "^7.0.0"
}
}