-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.91 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
75
76
77
78
{
"name": "vue-split-screen",
"type": "module",
"version": "0.0.12",
"packageManager": "[email protected]",
"description": "",
"author": "zcf0508 <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/zcf0508/vue-split-screen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zcf0508/vue-split-screen.git"
},
"bugs": "https://github.com/zcf0508/vue-split-screen/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"format": "eslint . --fix",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"play": "npm -C playground run dev",
"play:build": "npm run build && npm -C playground run build",
"play:serve": "npm -C playground run serve"
},
"peerDependencies": {
"vue": "^3.2.0",
"vue-router": "^4.0.0"
},
"dependencies": {
"lodash-es": "^4.17.21",
"vue": "^3.4.25",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"bumpp": "^8.2.1",
"eslint": "^9.1.1",
"eslint-plugin-security": "^3.0.0",
"esno": "^0.16.3",
"pnpm": "^8.15.7",
"rimraf": "^3.0.2",
"typescript": "^5.4.5",
"unbuild": "^0.8.11",
"vite": "^5.2.10",
"vitest": "^1.2.1"
}
}