-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.43 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
{
"name": "@ow3/hello-world-vue",
"type": "module",
"version": "0.14.0",
"packageManager": "[email protected]",
"description": "The most simple way to develop your Vue 3 Component Library.",
"author": "Chris Breuer",
"license": "MIT",
"homepage": "https://github.com/openweblabs/vue-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openwebstacks/vue-starter.git"
},
"bugs": {
"url": "https://github.com/openwebstacks/vue-starter/issues"
},
"keywords": [
"component",
"library",
"vue",
"vite",
"typescript",
"javascript",
"starter",
"kit",
"stacks"
],
"contributors": [
"Chris Breuer <[email protected]>"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=v16.17.0",
"pnpm": ">=7.11.0"
},
"scripts": {
"build": "vite build && pnpm run typecheck",
"dev": "vite dev --open --port 3333",
"fresh": "rimraf node_modules/ pnpm-lock.yaml && pnpm i",
"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",
"typecheck": "vue-tsc --emitDeclarationOnly",
"release": "bumpp --execute 'pnpm run changelog' --all",
"preinstall": "node .scripts/check-node-version.mjs"
},
"dependencies": {
"vue": "^3.2.39"
},
"devDependencies": {
"@ow3/eslint-config": "^0.28.2",
"@babel/types": "^7.19.0",
"@ow3/stacks": "^0.30.4",
"@types/node": "^18.7.16",
"@vueuse/core": "^9.2.0",
"bumpp": "^8.2.1",
"commitizen": "^4.2.5",
"conventional-changelog-cli": "^2.2.2",
"cz-git": "^1.3.11",
"eslint": "^8.23.1",
"lint-staged": "^13.0.3",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vitest": "^0.23.2",
"vue": "^3.2.39",
"vue-tsc": "^0.40.13"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --config ./commitlint.config.js --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}