-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.65 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
{
"name": "velours",
"version": "0.4.1",
"description": "Soften your experience with asynchronous data in VueJs.",
"author": {
"name": "Etienne Maheu",
"email": "contact@etiennemaheu.com",
"url": "https://etiennemaheu.com"
},
"keywords": [
"async",
"binder",
"bookmark",
"component",
"composable",
"paging",
"pinia",
"promise",
"store",
"vue",
"vuejs"
],
"homepage": "https://github.com/kawazoe/velours",
"repository": {
"type": "git",
"url": "https://github.com/kawazoe/velours.git"
},
"bugs": {
"url": "https://github.com/kawazoe/velours/issues"
},
"license": "MIT",
"module": "velours.es.js",
"main": "velours.es.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts,.vue src"
},
"dependencies": {
"nanoid": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vitest/ui": "^0.23.2",
"@vue/eslint-config-typescript": "^11.0.1",
"@vue/test-utils": "^2.0.2",
"eslint": "^8.23.1",
"eslint-plugin-vue": "^9.5.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-dts": "^1.5.0",
"vite-plugin-static-copy": "^0.9.0",
"vitest": "^0.23.2",
"vue-tsc": "^0.40.4"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": "^3.2.0"
},
"peerDependenciesMeta": {
"pinia": {
"optional": true
}
},
"web-types": [
"./web-types.json"
]
}