-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "vue-bundle-renderer",
"version": "2.2.0",
"description": "Bundle Renderer for Vue 3.0",
"repository": "nuxt-contrib/vue-bundle-renderer",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"runtime.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint src",
"prepack": "unbuild",
"test": "pnpm lint && pnpm vitest run --coverage && tsc --noEmit",
"bench": "vitest bench"
},
"dependencies": {
"ufo": "^1.6.4"
},
"devDependencies": {
"@codspeed/vitest-plugin": "^5.4.0",
"@nuxt/eslint-config": "^1.15.2",
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.5",
"changelogen": "^0.6.2",
"eslint": "^10.3.0",
"pkg-pr-new": "^0.0.70",
"semver": "^7.7.4",
"std-env": "^4.1.0",
"typescript": "^6.0.3",
"unbuild": "^3.6.1",
"vite": "^8.0.10",
"vitest": "4.1.5",
"vue": "3.5.33"
},
"packageManager": "pnpm@10.33.3"
}