-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "vue-vroom",
"version": "0.12.3",
"license": "MIT",
"description": "Vroom generates type safe stores and mock API with minimal config",
"homepage": "https://frederikbache.github.io/vue-vroom/",
"repository": {
"type": "git",
"url": "https://github.com/frederikbache/vue-vroom.git"
},
"author": {
"name": "Frederik Bache",
"email": "frederik@bache.io"
},
"main": "./dist/vue-vroom.umd.js",
"module": "./dist/vue-vroom.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"require": "./dist/vue-vroom.umd.js",
"import": "./dist/vue-vroom.mjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly -p tsconfig.test.json",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:type": "tsc -p ./test-dts/tsconfig.json",
"docs:dev": "vitepress dev docs --port 5174",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"lint": "prettier -c --parser typescript src/**/*"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.0",
"@types/node": "^18.8.3",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-istanbul": "^2.1.1",
"@vue/test-utils": "^2.4.6",
"jsdom": "^20.0.1",
"prettier": "^2.8.7",
"typescript": "^5.6.2",
"vite": "^4.5.3",
"vitepress": "^1.0.0-alpha.19",
"vitest": "^2.1.1",
"vue-tsc": "^2.1.6"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.0.0"
},
"dependencies": {
"@vue/devtools-api": "^6.4.4"
}
}