-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 977 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
33
34
35
36
37
38
39
{
"name": "astro-command-palette",
"description": "A minimal, fast and lightweight command palette for astro with no dependencies",
"author": "Pau García Chiner",
"version": "0.1.3",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pauchiner/astro-command-palette.git"
},
"exports": {
".": "./src/index.ts",
"./hooks": "./src/scripts/hooks/index.ts"
},
"main": "./src/index.ts",
"keywords": [
"withastro",
"astro-component"
],
"scripts": {
"lint": "oxlint src",
"format": "prettier -w .",
"dev": "cd example && astro dev"
},
"devDependencies": {
"@astrojs/ts-plugin": "1.8.0",
"astro": "4.9.2",
"eslint-plugin-astro": "1.2.0",
"oxlint": "0.4.2",
"prettier": "3.3.0",
"prettier-plugin-astro": "0.14.0",
"typescript": "5.4.5"
},
"peerDependencies": {
"astro": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"packageManager": "[email protected]"
}