generated from ow3org/ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.49 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
{
"name": "@ow3/deep-unref-vue",
"version": "0.1.3",
"packageManager": "[email protected]",
"description": "Easily remove all refs from an object using the `deepUnref`-composable.",
"keywords": [
"vue",
"composable",
"unref",
"deep"
],
"homepage": "https://github.com/openweblabs/deep-unref-vue#readme",
"bugs": {
"url": "https://github.com/openweblabs/deep-unref-vue/issues"
},
"license": "MIT",
"author": "Chris Breuer <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/openweblabs/deep-unref-vue.git"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepublishOnly": "pnpm run build",
"release": "npx bumpp package.json --execute 'pnpm run changelog' --commit 'chore(release): %s' --tag --push --all && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^9.2.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@commitlint/config-conventional": "^17.0.2",
"@commitlint/cz-commitlint": "^17.0.0",
"@commitlint/types": "^17.0.0",
"@types/node": "^17.0.32",
"bumpp": "^7.2.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.18.0",
"esno": "^0.16.3",
"inquirer": "^8.2.4",
"lint-staged": "^13.0.3",
"pnpm": "^7.3.0",
"simple-git-hooks": "^2.8.0",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.16.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix",
"package.json": "sort-package-json"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --config ./commitlint.config.ts --edit $1"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"engines": {
"node": ">=v16.15.1",
"pnpm": ">=7.3.0"
}
}