-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
127 lines (127 loc) · 3.35 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "unplugin-vue2-script-setup",
"version": "0.11.4",
"packageManager": "pnpm@8.6.11",
"description": "Bring <script setup> to Vue 2",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/unplugin/unplugin-vue2-script-setup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unplugin/unplugin-vue2-script-setup.git"
},
"bugs": {
"url": "https://github.com/unplugin/unplugin-vue2-script-setup/issues"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*",
"./esbuild": {
"import": "./dist/esbuild.mjs",
"require": "./dist/esbuild.js"
},
"./jest": "./jest.js",
"./nuxt": {
"import": "./dist/nuxt.mjs",
"require": "./dist/nuxt.js"
},
"./rollup": {
"import": "./dist/rollup.mjs",
"require": "./dist/rollup.js"
},
"./types": {
"import": "./dist/types.mjs",
"require": "./dist/types.js"
},
"./vite": {
"import": "./dist/vite.mjs",
"require": "./dist/vite.js"
},
"./webpack": {
"import": "./dist/webpack.mjs",
"require": "./dist/webpack.js"
}
},
"main": "dist/index.js",
"files": [
"dist",
"jest.js",
"*.d.ts"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:examples": "pnpm -r --filter=!unplugin-vue2-script-setup run build",
"play": "npm -C playground run dev",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"test:update": "vitest -u"
},
"peerDependencies": {
"@vue/composition-api": "*",
"@vue/runtime-dom": "^3.2.31",
"pug": "^3.0.2"
},
"peerDependenciesMeta": {
"pug": {
"optional": true
}
},
"dependencies": {
"@antfu/utils": "^0.7.5",
"@babel/core": "^7.22.9",
"@babel/generator": "^7.22.9",
"@babel/parser": "^7.22.7",
"@babel/traverse": "^7.22.8",
"@babel/types": "^7.22.5",
"@rollup/pluginutils": "^5.0.2",
"@vue/compiler-core": "^3.3.4",
"@vue/compiler-dom": "^3.3.4",
"@vue/reactivity-transform": "^3.3.4",
"@vue/shared": "^3.3.4",
"defu": "^6.1.2",
"magic-string": "^0.30.2",
"unplugin": "^1.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.40.0",
"@antfu/ni": "^0.21.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/babel__core": "^7.20.1",
"@types/estree": "^1.0.1",
"@types/node": "^18.17.1",
"@types/pug": "^2.0.6",
"@types/ws": "^8.5.5",
"@vue/composition-api": "^1.7.1",
"@vue/runtime-dom": "^3.3.4",
"bumpp": "^9.1.1",
"esbuild": "^0.18.17",
"eslint": "^8.46.0",
"fast-glob": "^3.3.1",
"pug": "^3.0.2",
"rimraf": "^5.0.1",
"rollup": "^3.27.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6",
"vite": "^4.4.8",
"vitest": "^0.33.0",
"webpack": "^5.88.2"
},
"pnpm": {
"overrides": {
"unplugin-vue2-script-setup": "workspace:*"
}
}
}