generated from posva/vue-ts-lib
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 2.71 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
{
"name": "vue-use-spring",
"type": "module",
"version": "0.3.3",
"packageManager": "[email protected]",
"description": "Natural animations with springs",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"unpkg": "./dist/index.global.js",
"jsdelivr": "./dist/index.global.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"build": "unbuild",
"dev": "vite",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"lint": "prettier -c \"{src,scripts,demo}/**/*.[jtm]s?(x)\" \"*.[mt]s\" \"demo/**/*.vue\"",
"lint:fix": "pnpm run lint --write",
"test:types": "tsc --noEmit",
"test:unit": "vitest --coverage",
"test": "pnpm run test:types && pnpm run test:unit run && pnpm run build",
"prepare": "simple-git-hooks"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"vue",
"animation",
"natural",
"spring",
"physics",
"use-spring"
],
"license": "MIT",
"devDependencies": {
"@posva/prompts": "^2.4.4",
"@types/lodash-es": "^4.17.12",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^12.0.0",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^5.0.0",
"execa": "^9.5.2",
"lint-staged": "^15.2.11",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"p-series": "^3.0.0",
"prettier": "^2.8.8",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.{js,mjs,json,cjs}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js"
}
],
"peerDependencies": {
"@vue/composition-api": "^1.4.0",
"vue": "^2.6.12 || ^3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-use-spring.git"
},
"bugs": {
"url": "https://github.com/posva/vue-use-spring/issues"
},
"homepage": "https://github.com/posva/vue-use-spring#readme",
"dependencies": {
"vue-demi": "latest"
}
}