-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
87 lines (87 loc) · 2.64 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
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.19.0",
"@stackblitz/sdk": "^1.6.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"c8": "^7.11.0",
"eslint": "^8.8.0",
"fuse.js": "^6.5.3",
"happy-dom": "^2.31.1",
"prettier": "2.6.0",
"shiki": "^0.10.1",
"solid-app-router": "^0.2.1",
"solid-js": "^1.3.2",
"solid-transition-group": "0.0.8",
"tinykeys": "^1.4.0",
"ts-node": "^10.5.0",
"typescript": "^4.6.2",
"vite": "^2.7.10",
"vite-plugin-solid": "^2.2.1",
"vitest": "^0.3.2"
},
"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": "[email protected]",
"url": "https://devadi.netlify.app"
}
],
"keywords": [
"palette",
"actions",
"command",
"CMD+K",
"quick menu",
"search bar",
"solidhack",
"best_ecosystem"
]
}