-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "@cgvweb/vue-calendar",
"version": "0.0.2",
"repository": "https://github.com/ChrisGV04/vue-calendar",
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpx rimraf dist && tsup src/*.ts --format cjs,esm --dts --minify",
"lint": "pnpm biome lint ./src",
"release": "release-it && npm run build && npm publish"
},
"peerDependencies": {
"@internationalized/date": ">=3.5",
"vue": ">=3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@internationalized/date": "^3.5.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^20.11.30",
"@vitejs/plugin-vue": "^5.0.4",
"changelogen": "^0.5.5",
"release-it": "^17.1.1",
"tsup": "^8.0.2",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vue": "^3.4.21",
"vue-tsc": "^2.0.6"
}
}