-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 861 Bytes
/
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
{
"description": "This plugin adds a command palette to the Koha staff client. It aims to make navigation easier for power users.",
"version": "1.0.1",
"license": "GPL-3.0",
"repository": {
"url": "git+https://github.com/pders01/koha-plugin-command-palette.git",
"type": "git"
},
"keywords": [
"koha-plugin",
"command-palette",
"koha"
],
"author": "Paul Derscheid <me@paulderscheid.xyz>",
"scripts": {
"build": "vite build",
"dev": "vite dev",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\""
},
"main": "index.js",
"devDependencies": {
"vite": "^5.4.8",
"prettier-plugin-organize-imports": "^3.2.2",
"tslib": "^2.6.0",
"typescript": "^5.6.2"
},
"dependencies": {
"lit": "^3.2.0"
},
"name": "koha-plugin-command-palette"
}