-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 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
{
"name": "vue3-script-to-setup",
"type": "module",
"version": "0.2.2",
"author": "clencat <2091927351@qq.com>",
"packageManager": "pnpm@7.12.0",
"description": "transform your vue3 script to setup mode",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/a145789/vue3-script-to-setup"
},
"bugs": "https://github.com/a145789/vue3-script-to-setup/issues",
"keywords": [
"vue3"
],
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"tosetup": "bin/tosetup.mjs"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "unbuild",
"lint": "rome ci ./src",
"prepublishOnly": "nr build",
"dev": "esno src/setup.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"major": "standard-version -r major",
"minor": "standard-version -r minor",
"patch": "standard-version -r patch",
"release": "pnpm run build && pnpm publish --access public --no-git-checks",
"deploy": "cd playground && pnpm build && gh-pages -d playground/dist"
},
"devDependencies": {
"@antfu/ni": "^0.21.4",
"@types/node": "^20.3.1",
"esno": "^0.16.3",
"gh-pages": "^5.0.0",
"rome": "^12.1.3",
"standard-version": "^9.5.0",
"typescript": "^5.1.3",
"unbuild": "^1.2.1",
"vite": "^4.3.9",
"vitest": "^0.32.2"
},
"dependencies": {
"@swc/core": "^1.3.64",
"colorette": "^2.0.20",
"fast-glob": "^3.2.12",
"find-up": "^6.3.0",
"magic-string": "^0.30.0",
"slash": "^5.1.0",
"unconfig": "^0.3.9",
"vue": "^3.2.47"
}
}