This repository was archived by the owner on Dec 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
100 lines (100 loc) · 2.63 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
{
"name": "unplugin-vue2-script-setup",
"version": "0.5.4",
"description": "Bring <script setup> to Vue 2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./vite": {
"require": "./dist/vite.js",
"import": "./dist/vite.mjs"
},
"./webpack": {
"require": "./dist/webpack.js",
"import": "./dist/webpack.mjs"
},
"./rollup": {
"require": "./dist/rollup.js",
"import": "./dist/rollup.mjs"
},
"./nuxt": {
"require": "./dist/nuxt.js",
"import": "./dist/nuxt.mjs"
},
"./jest": {
"require": "./jest.js"
},
"./types": {
"require": "./dist/types.js",
"import": "./dist/types.mjs"
},
"./*": "./*"
},
"funding": "https://github.com/sponsors/antfu",
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antfu/unplugin-vue2-script-setup/issues"
},
"homepage": "https://github.com/antfu/unplugin-vue2-script-setup#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/unplugin-vue2-script-setup.git"
},
"keywords": [],
"files": [
"dist",
"jest.js",
"*.d.ts"
],
"scripts": {
"prepublishOnly": "nr build",
"build": "rimraf dist && tsup 'src/*.ts' --format cjs,esm --dts && esno scripts/postbuild.ts",
"dev": "tsup 'src/*.ts' --watch src",
"play": "npm -C playground run dev",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "nr lint -- --fix",
"test": "jest",
"test:update": "jest -u"
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@antfu/ni": "^0.7.0",
"@antfu/utils": "^0.3.0",
"@rollup/pluginutils": "^4.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"@vue/composition-api": "^1.1.3",
"@vue/runtime-dom": "^3.2.6",
"bumpp": "^6.0.6",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"esno": "^0.9.1",
"fast-glob": "^3.2.7",
"jest": "^27.0.6",
"log-editor": "^0.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"tsup": "^4.14.0",
"typescript": "^4.4.2",
"vite": "^2.5.1"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/generator": "^7.15.0",
"@babel/parser": "^7.15.3",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0",
"@vue/ref-transform": "^3.2.6",
"@vue/shared": "^3.2.6",
"htmlparser2": "^6.1.0",
"magic-string": "^0.25.7",
"unplugin": "^0.2.1"
}
}