generated from stacksjs/stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.18 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "my-lib",
"version": "0.11.0",
"packageManager": "[email protected]",
"description": "The easy way to start your Vue 3 Component Library.",
"keywords": [
"component",
"library",
"vue",
"typescript",
"javascript",
"starter",
"kit"
],
"homepage": "https://github.com/openweblabs/vue-component-library-starter#readme",
"bugs": {
"url": "https://github.com/openweblabs/vue-component-library-starter/issues"
},
"license": "MIT",
"author": "Chris Breuer <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/openweblabs/vue-component-library-starter.git"
},
"contributors": [
"Chris Breuer <[email protected]>"
],
"main": "./dist/my-lib.umd.js",
"module": "./dist/my-lib.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/my-lib.umd.js",
"import": "./dist/my-lib.es.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build && pnpm run typecheck",
"dev": "vite dev --open --port 3333",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:e2e": "cypress open",
"test:unit": "vitest",
"typecheck": "vue-tsc --emitDeclarationOnly",
"release": "npx bumpp package.json --execute 'pnpm run changelog' --commit 'chore(release): %s' --tag --push --all",
"preinstall": "node .scripts/check-for-pnpm.js && node .scripts/check-node-version.mjs"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --config ./commitlint.config.ts --edit $1"
},
"dependencies": {
"date-fns": "^2.28.0",
"vue": "^3.2.36"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.1",
"@babel/types": "^7.18.4",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/cz-commitlint": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@iconify-json/heroicons-outline": "^1.1.1",
"@iconify-json/heroicons-solid": "^1.1.1",
"@types/node": "^17.0.31",
"@unocss/preset-icons": "^0.37.4",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/compiler-sfc": "^3.2.36",
"@vueuse/core": "^8.6.0",
"bumpp": "^7.1.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cypress": "^10.0.2",
"eslint": "^8.17.0",
"eslint-plugin-cypress": "^2.12.1",
"inquirer": "^8.2.4",
"lint-staged": "^13.0.0",
"minimist": "^1.2.6",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.8.0",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.3",
"unocss": "^0.37.4",
"unplugin-auto-import": "^0.8.7",
"unplugin-vue-components": "^0.19.6",
"upath": "^2.0.1",
"vite": "^2.9.9",
"vitest": "^0.13.1",
"vue-tsc": "^0.36.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix",
"package.json": "sort-package-json"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": ">=v16.15.1",
"pnpm": ">=7.1.8"
}
}