-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.61 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
{
"name": "cmd-dialog",
"author": "Roman Ožana <[email protected]> (https://ozana.cz)",
"repository": "OzzyCzech/cmd-dialog",
"homepage": "https://cmd-dialog.vercel.app/",
"description": "Command dialog and keyboard shortcuts palette for web apps",
"version": "2.0.0",
"type": "module",
"module": "dist/cmd-dialog.js",
"main": "dist/cmd-dialog.js",
"exports": {
".": "./dist/cmd-dialog.js"
},
"types": "./types/cmd-dialog.d.ts",
"files": [
"dist",
"types"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"release": "np --no-release-draft",
"xo": "xo",
"test": "xo && tsc"
},
"dependencies": {
"fuse.js": "^7.0.0",
"lit": "^3.1.3",
"tinykeys": "^2.1.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/css-modules": "^1.0.5",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"np": "^10.0.5",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"xo": "^0.58.0"
},
"keywords": [
"keyboard",
"shortcuts",
"dialog",
"command",
"palette"
],
"xo": {
"envs": [
"node",
"browser"
],
"rules": {
"import/no-duplicates": "off",
"import/no-unassigned-import": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
"@typescript-eslint/indent": "off",
"unicorn/prefer-at": "off"
},
"ignores": [
"dist",
"types"
]
}
}