-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "unplugin-vue-named-export",
"type": "module",
"version": "0.9.4",
"packageManager": "[email protected]",
"description": "Named export for Vue SFC.",
"author": "Kevin Deng <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/sxzz",
"homepage": "https://github.com/unplugin/unplugin-vue-named-export#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue-named-export.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue-named-export/issues"
},
"keywords": [
"unplugin",
"rollup",
"vite",
"esbuild",
"webpack"
],
"exports": {
".": "./dist/index.mjs",
"./esbuild": "./dist/esbuild.mjs",
"./farm": "./dist/farm.mjs",
"./rolldown": "./dist/rolldown.mjs",
"./rollup": "./dist/rollup.mjs",
"./rspack": "./dist/rspack.mjs",
"./vite": "./dist/vite.mjs",
"./volar": "./dist/volar.mjs",
"./webpack": "./dist/webpack.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit && vue-tsc --noEmit -p tests/fixtures/tsconfig.json",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@vue/language-core": "^3.2.6",
"ast-kit": "^2.2.0",
"muggle-string": "^0.4.1",
"rolldown-string": "^0.3.0",
"unplugin": "^3.0.0"
},
"inlinedDependencies": {
"change-case": "5.4.4"
},
"devDependencies": {
"@babel/types": "^7.29.0",
"@sxzz/eslint-config": "^7.8.4",
"@sxzz/prettier-config": "^2.3.1",
"@sxzz/test-utils": "^0.5.16",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260327.2",
"bumpp": "^11.0.1",
"change-case": "^5.4.4",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"tsdown": "^0.21.6",
"tsdown-preset-sxzz": "^0.4.2",
"typescript": "^6.0.2",
"unplugin-oxc": "^0.6.0",
"unplugin-vue": "^7.1.1",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"vue": "^3.5.31",
"vue-tsc": "^3.2.6"
},
"prettier": "@sxzz/prettier-config"
}