-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
79 lines (79 loc) · 1.87 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
{
"name": "vue-concurrency",
"version": "5.0.3",
"description": "A library for encapsulating asynchronous operations and managing concurrency for Vue + Composition API",
"type": "module",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.umd.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig.build.json && vite build",
"test": "vitest",
"prepublishOnly": "npm run build",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"release": "release-it",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"vue",
"composition api",
"vuejs",
"generators",
"concurrency",
"task",
"async",
"hooks"
],
"author": "Martin Malinda",
"repository": "github:martinmalinda/vue-concurrency",
"homepage": "https://vue-concurrency.netlify.app/",
"license": "MIT",
"dependencies": {
"caf": "^15.0.1"
},
"peerDependencies": {
"vue": "^3.3"
},
"devDependencies": {
"@testing-library/vue": "^8.0.1",
"@types/node": "^20.10.4",
"@vitest/coverage-v8": "^1.0.4",
"happy-dom": "^12.10.3",
"release-it": "^17.0.1",
"typescript": "5.3.3",
"vite": "^5.0.9",
"vite-plugin-dts": "^3.6.4",
"vitepress": "^1.1.4",
"vitest": "^1.0.4",
"vue": "^3.3.11",
"vuepress": "^1.9.10",
"vuepress-plugin-typescript": "^0.3.1"
},
"release-it": {
"github": {
"tokenRef": "RELEASE_IT_GITHUB_TOKEN_VC",
"release": true
}
},
"sideEffects": false
}