forked from itaditya/solid-command-palette
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.64 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.64 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
{
"name": "solid-command-palette",
"version": "1.0.0",
"description": "Add a command palette to your Solid.js App",
"info": "Boost your users productivity 10x by integrating our command palette.",
"main": "./pkg-dist/solid-command-palette.cjs.js",
"module": "./pkg-dist/solid-command-palette.es.js",
"types": "./pkg-dist/types",
"sideEffects": false,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:types": "tsc --noEmit",
"lint:types:watch": "npm run lint:types -- --watch",
"lint:syntax": "eslint --ext '.ts,.tsx' 'src/'",
"lint:syntax:fix": "npm run lint:syntax -- --fix",
"lint": "npm run lint:format && npm run lint:syntax && npm run lint:types",
"test:func": "vitest src",
"test:func:run": "vitest run src",
"test:e2e": "playwright test --headed --project='chromium'",
"test:e2e:run": "playwright test",
"test:e2e:open": "playwright open 'http://localhost:3000'",
"test:e2e:list": "playwright test --list",
"gen:types": "tsc --emitDeclarationOnly",
"gen:lib": "vite build -c vite-pkg.config.ts",
"gen:snippets": "ts-node -P tsconfig-node.json ./scripts/generateSnippets.ts",
"prepublishOnly": "npm run gen:lib && npm run gen:types"
},
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.45.3",
"@solidjs/router": "^0.14.1",
"@stackblitz/sdk": "^1.11.0",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"c8": "^10.1.2",
"eslint": "^9.8.0",
"fuse.js": "^7.0.0",
"happy-dom": "^14.12.3",
"prettier": "3.3.3",
"shiki": "^1.12.1",
"solid-js": "^1.8.19",
"solid-transition-group": "0.2.3",
"tinykeys": "^2.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-solid": "^2.10.2",
"vitest": "^2.0.5"
},
"peerDependencies": {
"fuse.js": "^6.5.3",
"solid-js": "^1.3.2",
"solid-transition-group": "0.0.8",
"tinykeys": "^1.4.0"
},
"files": [
"pkg-dist"
],
"homepage": "https://solid-command-palette.vercel.app/",
"repository": {
"type": "git",
"url": "github:itaditya/solid-command-palette"
},
"bugs": "https://github.com/itaditya/solid-command-palette/issues",
"contributors": [
{
"name": "Aditya Agarwal",
"email": "adityaa803@gmail.com",
"url": "https://devadi.netlify.app"
}
],
"keywords": [
"palette",
"actions",
"command",
"CMD+K",
"quick menu",
"search bar",
"solidhack",
"best_ecosystem"
]
}