-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 926 Bytes
/
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
{
"name": "@yagro/composables",
"type": "module",
"version": "0.1.7",
"main": "dist/yagro-composables.umd.js",
"module": "dist/yagro-composables.es.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test:watch": "vitest",
"test:run": "vitest run",
"dev": "vite",
"dev:host": "vite --host",
"build": "npm run test:run && vite build",
"preview": "vite preview",
"lint:fix": "eslint . --fix",
"prepack": "npm run test:run",
"prepublish": "npm run build"
},
"peerDependencies": {
"date-fns": ">=2.0.0 <4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"@rollup/plugin-typescript": "^11.1.6",
"@vitejs/plugin-vue": "^4.5.1",
"@vue/runtime-dom": "^3.4.3",
"date-fns": "^3.6.0",
"eslint": "^8.55.0",
"typescript": "^5.3.3",
"vite": "^5.0.5",
"vitest": "^1.2.2",
"vue": "^3.3.10"
}
}