This repository has been archived by the owner on Jun 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.05 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
{
"name": "vite-plugin-vue-with-defaults-imports",
"version": "1.0.0",
"description": "Import defaults in Vue SFC for withDefaults",
"keywords": [
"vue",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/Zolyn/vite-plugin-vue-with-defaults-imports#readme",
"bugs": {
"url": "https://github.com/Zolyn/vite-plugin-vue-with-defaults-imports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zolyn/vite-plugin-vue-with-defaults-imports.git"
},
"license": "MIT",
"author": "Yumeoto Zorin <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"changelog": "changelogithub -o CHANGELOG.md --contributors false --emoji false",
"commit": "cz",
"dev": "unbuild --stub",
"ensure": "git-ensure --no-behind -c",
"lint": "eslint \"./src/**/*.ts\"",
"lint:fix": "nr lint --fix",
"prepare": "husky install",
"prepublishOnly": "nr build",
"release": "nr ensure && bumpp --commit --tag --push",
"typecheck": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "@zolyn/cz-conventional-changelog"
}
},
"devDependencies": {
"@antfu/ni": "0.18.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/debug": "^4.1.7",
"@types/node": "^18.0.4",
"@zolyn/changelogithub": "0.12.0",
"@zolyn/cz-conventional-changelog": "^1.0.1",
"@zolyn/eslint-config": "^1.1.0",
"bumpp": "^8.2.1",
"commitizen": "^4.2.4",
"eslint": "^8.19.0",
"git-ensure": "^0.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4",
"unbuild": "^0.8.0",
"vite": "^3.0.5",
"vue": "^3.2.37"
},
"peerDependencies": {
"vite": "^3.0.5",
"vue": "^3.2.37"
}
}