-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 2.81 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vue-command-kit",
"version": "0.4.0",
"description": "⌘K — Fast, composable, unstyled command menu for Vue 3",
"type": "module",
"packageManager": "pnpm@11.1.2",
"main": "./dist/vue-cmdk.umd.cjs",
"module": "./dist/vue-cmdk.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-cmdk.js",
"require": "./dist/vue-cmdk.umd.cjs"
},
"./composables": {
"types": "./dist/useCommandMenu.d.ts",
"import": "./dist/vue-cmdk.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/vue-cmdk.js"
}
},
"files": [
"dist/vue-cmdk.js",
"dist/vue-cmdk.umd.cjs",
"dist/**/*.d.ts",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/postbuild.mjs",
"preview": "vite preview",
"build:demo": "vite build --config vite.demo.config.ts",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"format": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"vue",
"command",
"palette",
"command-palette",
"cmdk",
"cmd-k",
"vue3",
"keyboard",
"menu"
],
"license": "MIT",
"author": "yvng-jie (https://github.com/yvng-jie)",
"repository": {
"type": "git",
"url": "https://github.com/yvng-jie/vue-cmdk"
},
"homepage": "https://github.com/yvng-jie/vue-cmdk#readme",
"bugs": {
"url": "https://github.com/yvng-jie/vue-cmdk/issues"
},
"engines": {
"node": ">=22.13"
},
"lint-staged": {
"*.{ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@microsoft/api-extractor": "^7.58.7",
"@playwright/test": "^1.61.1",
"@types/node": "^25.9.1",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/shared": "^3.5.35",
"@vue/test-utils": "^2.4.10",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.6.0",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"typescript": "^5.7.0",
"typescript-eslint": "^8.60.1",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^4.1.8",
"vue": "^3.5.0",
"vue-tsc": "^2.0.0"
}
}