-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.71 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
{
"name": "sfc2esm",
"type": "module",
"version": "0.0.9",
"packageManager": "[email protected]",
"description": "Code convertor from SFC to ESM | 由SFC到ESM的代码转换器",
"author": "tofu-xx <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/tofu-xx",
"homepage": "https://github.com/tofu-xx/sfc2esm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tofu-xx/sfc2esm.git"
},
"bugs": "https://github.com/tofu-xx/sfc2esm/issues",
"keywords": [
"vuejs",
"vue",
"converter",
"sfc",
"esm"
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.es.js",
"require": "./dist/main.umd.js"
}
},
"main": "./dist/main.umd.js",
"module": "./dist/main.es.js",
"types": "./dist/main.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/main.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"start": "esno src/main.ts",
"build": "vite build",
"watch": "vite build --watch",
"release": "bumpp -no-push && nr build && pnpm publish",
"up": "taze major -I",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@vue/compiler-sfc": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@antfu/ni": "^0.23.1",
"@types/node": "^22.10.2",
"bumpp": "^9.9.1",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"esno": "^4.8.0",
"taze": "^0.18.0",
"tsc": "^2.0.4",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
}
}