-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "vite-plugin-vue-nested-sfc",
"version": "0.1.3",
"description": "Nest SFCs within your SFC.",
"repository": "https://github.com/HunYan-io/vite-plugin-vue-nested-sfc",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./tooling": {
"types": "./dist/tooling.d.ts",
"import": "./dist/tooling.mjs",
"require": "./dist/tooling.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src tooling test",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src tooling test -w",
"prepack": "pnpm run build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && vitest run --coverage"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-c8": "^0.29.7",
"@volar/vue-language-core": "^1.6.3",
"@vue/shared": "^3.2.47",
"changelogen": "^0.5.1",
"eslint": "^8.36.0",
"eslint-config-unjs": "^0.1.0",
"prettier": "^2.8.5",
"typescript": "^4.9.5",
"unbuild": "^1.1.2",
"vite": "^4.2.1",
"vitest": "^0.29.7",
"vue": "^3.2.47"
},
"peerDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"vite": "^4.0.0",
"vue": "^3.2.25"
},
"packageManager": "[email protected]"
}