-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "vite-plugin-devtools-json",
"version": "1.0.0",
"description": "Vite plugin for generating `com.chrome.devtools.json` on the fly in the devserver.",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./dist/*"
},
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"clean": "rm -rf dist",
"dev": "rollup -c rollup.config.ts --configPlugin typescript",
"prepare": "npm run clean && npm run build",
"test": "vitest --no-watch",
"test:watch": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChromeDevTools/vite-plugin-devtools-json.git"
},
"keywords": [
"vite",
"vite-plugin",
"chrome-devtools",
"devtools",
"chrome"
],
"author": "Benedikt Meurer <bmeurer@google.com>",
"bugs": {
"url": "https://github.com/ChromeDevTools/vite-plugin-devtools-json/issues"
},
"homepage": "https://github.com/ChromeDevTools/vite-plugin-devtools-json#readme",
"license": "MIT",
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"uuid": "^11.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.5",
"@types/supertest": "^6.0.2",
"rollup": "^4.34.8",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.2.1",
"supertest": "^7.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.2.0",
"vitest": "^3.0.8"
},
"publishConfig": {
"registry": "https://wombat-dressing-room.appspot.com"
}
}