-
Notifications
You must be signed in to change notification settings - Fork 819
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 822 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 822 Bytes
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
{
"name": "@vscode-bicep-ui/messaging",
"private": true,
"version": "0.0.0",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix"
},
"peerDependencies": {
"react": "^19.2.4"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@types/vscode-webview": "^1.57.5",
"@vitest/coverage-v8": "^3.2.4",
"happy-dom": "^20.8.9",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.2.4"
}
}