-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "vite-plugin-source-map-visualizer",
"version": "0.2.1",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"homepage": "https://github.com/AriPerkkio/vite-plugin-source-map-visualizer",
"bugs": "https://github.com/AriPerkkio/vite-plugin-source-map-visualizer",
"repository": "https://github.com/AriPerkkio/vite-plugin-source-map-visualizer",
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.build.json && cp src/*.css dist",
"test": "vitest --coverage --coverage.include=src",
"typecheck": "tsc --noEmit",
"example": "node scripts/generate-example.mjs",
"deploy": "touch example/.nojekyll && gh-pages --dist example --dotfiles true"
},
"peerDependencies": {
"vite": ">=4"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@vitest/coverage-v8": "^2.0.5",
"gh-pages": "^6.1.1",
"magic-string": "^0.30.11",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
}
}