-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "vue-winbox",
"version": "0.2.3",
"packageManager": "pnpm@8.6.3",
"description": "",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/vue-winbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/vue-winbox.git"
},
"bugs": "https://github.com/wobsoriano/vue-winbox/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch --onSuccess \"pnpm --filter playground dev\"",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"dependencies": {
"nanoid": "^4.0.2",
"winbox": "^0.2.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@types/winbox": "^0.2.1",
"bumpp": "^9.1.1",
"eslint": "^8.43.0",
"tsup": "7.0.0",
"typescript": "^5.1.3",
"vue": "^3.3.4"
},
"eslintConfig": {
"extends": "@antfu"
}
}