-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.69 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
{
"name": "@braw/async-computed",
"version": "0.0.0",
"description": "Compute values asynchronously with the Vue Composition API",
"keywords": [
"vue2",
"vue3",
"async",
"composable"
],
"homepage": "https://github.com/Brawaru/async-computed",
"bugs": {
"url": "https://github.com/brawaru/async-computed/issues"
},
"author": {
"name": "Alexander 'Brawaru' Sorokin",
"url": "https://github.com/Brawaru"
},
"funding": "https://github.com/Brawaru/Brawaru/blob/main/SUPPORT.md",
"repository": {
"type": "git",
"url": "https://github.com/brawaru/async-computed.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --noEmit && unbuild",
"dev": "vitest dev",
"prepack": "tsc --noEmit && unbuild && pnpm run test",
"test": "vitest run",
"release": "semantic-release"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@rollup/plugin-babel": "^6.0.3",
"eslint": "^8.29.0",
"prettier": "^2.8.1",
"prettier-plugin-jsdoc": "^0.4.2",
"semantic-release": "^19.0.5",
"typescript": "^4.9.3",
"unbuild": "^1.0.2",
"vitest": "^0.25.7"
},
"peerDependencies": {
"vue": "^2.7 || ^3.2.45"
},
"packageManager": "pnpm@7.18.0",
"publishConfig": {
"access": "public"
}
}