-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
128 lines (128 loc) · 3.3 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "vue-promised",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "Some awesome description",
"main": "dist/vue-promised.cjs.js",
"unpkg": "dist/vue-promised.global-vue-2.js",
"jsdelivr": "dist/vue-promised.global-vue-2.js",
"module": "dist/vue-promised.esm-bundler.js",
"types": "dist/vue-promised.d.ts",
"sideEffects": false,
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"docs": "vite",
"docs:build": "vite build",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "pnpm run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "vitest --coverage",
"test": "pnpm run lint && pnpm run test:types && pnpm run test:unit run && pnpm run build && pnpm run build:dts"
},
"files": [
"dist/*.js",
"dist/vue-promised.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"promise",
"composition",
"api",
"usePromise",
"async"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.35.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.3",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jsdom": "^21.1.1",
"@vitejs/plugin-vue": "^5.0.2",
"@vitest/coverage-c8": "^0.31.1",
"@vue/compiler-sfc": "^3.3.4",
"@vue/server-renderer": "^3.3.4",
"@vue/test-utils": "^2.3.2",
"conventional-changelog-cli": "^5.0.0",
"faked-promise": "^2.2.2",
"jsdom": "^25.0.0",
"lint-staged": "^15.1.0",
"mande": "^2.0.6",
"pascalcase": "^2.0.0",
"prettier": "^2.8.8",
"prismjs": "^1.29.0",
"rollup": "^4.1.1",
"rollup-plugin-typescript2": "^0.34.1",
"size-limit": "^8.2.4",
"typescript": "^5.0.4",
"vite": "^6.0.1",
"vitest": "^0.31.1",
"vue": "^3.3.4",
"vue-prism-component": "^2.0.0",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/minimal.js",
"ignore": [
"vue",
"@vue/test-utils"
]
},
{
"path": "size-checks/all.js",
"ignore": [
"vue",
"@vue/test-utils"
]
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vue-promised.git"
},
"bugs": {
"url": "https://github.com/posva/vue-promised/issues"
},
"homepage": "https://github.com/posva/vue-promised#readme",
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.4.0",
"vue": "^2.0.0 || >=3.0.0-0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"volta": {
"node": "22.11.0"
}
}