-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.49 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
79
80
81
82
83
84
85
86
{
"name": "cmd-bar",
"version": "0.9.20",
"license": "MIT",
"packageManager": "[email protected]",
"repository": "fabkho/cmd-bar",
"description": "Versatile Vue 3 command-bar component",
"engines": {
"node": ">=18"
},
"keywords": [
"vue plugin",
"vue",
"vue3",
"vue3 plugin",
"command bar",
"command palette"
],
"type": "module",
"author": "fabkho",
"files": [
"lib"
],
"style": "./lib/cmd-bar.css",
"main": "./lib/cmd-bar.umd.cjs",
"module": "./lib/cmd-bar.js",
"exports": {
".": {
"import": "./lib/cmd-bar.js",
"require": "./lib/cmd-bar.umd.cjs",
"types": "./lib/index.d.ts"
},
"./style.css": "./lib/cmd-bar.css"
},
"types": "./lib/index.d.ts",
"workspaces": [
"packages/**",
"playground/**",
"./"
],
"scripts": {
"docs": "pnpm run -r --filter=doc dev",
"play:vue": "pnpm --filter=vue3 p:dev",
"play:nuxt": "pnpm --filter=nuxt3 p:dev",
"example:basic": "pnpm --filter=basic dev",
"example:checkbox": "pnpm --filter=checkbox dev",
"example:hint": "pnpm --filter=hint dev",
"dev": "vite build --watch",
"build": "vue-tsc --noEmit && vite build --mode lib",
"ci:version": "pnpm changeset && pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"ci:publish": "npm run lint && pnpm run build && git status && changeset publish",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lintfix": "eslint . --fix --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"fuse.js": "^6.6.2",
"mitt": "^3.0.1",
"nanoid": "^4.0.2"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.17.17",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vueuse/core": "^10.3.0",
"@vueuse/integrations": "^10.5.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"prettier": "^3.0.0",
"sass": "^1.64.2",
"sass-loader": "^13.3.2",
"typescript": "~5.1.6",
"vite": "5.2.6",
"vite-plugin-dts": "^3.5.4",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.6",
"vue": "^3.5.4"
}
}