-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.43 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.43 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
{
"name": "@mattis44/react-command-palette",
"version": "1.0.0",
"description": "A flexible, accessible command palette component for React applications.",
"author": "Mattis",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"react",
"command",
"palette",
"cmdk",
"shortcut",
"ctrl+k",
"github"
],
"type": "module",
"scripts": {
"build": "tsup --config tsup.config.ts",
"dev": "tsup --config tsup.config.ts --watch",
"prepare": "npm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"dev:demo": "vite",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.14",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"happy-dom": "^20.1.0",
"jiti": "^2.6.0",
"jsdom": "^27.4.0",
"prettier": "^3.6.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.3.1",
"vitepress": "^2.0.0-alpha.12",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.js",
"require": "./dist/hooks.js"
},
"./style.css": "./dist/index.css"
},
"dependencies": {
"fuse.js": "^7.1.0"
}
}