-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "powerkeys",
"version": "0.1.0",
"description": "VS Code-style keyboard shortcuts for modern web apps",
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/alloc/powerkeys.git"
},
"files": [
"dist",
"docs",
"examples"
],
"type": "module",
"exports": {
"source": "./src/index.ts",
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"scripts": {
"dev": "tsdown --sourcemap --watch",
"build": "tsdown",
"demo:dev": "vite --config demo/vite.config.ts",
"demo:build": "vite build --config demo/vite.config.ts",
"demo:preview": "vite preview --config demo/vite.config.ts",
"format": "oxfmt .",
"lint": "oxlint src",
"test": "vitest",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@casbin/expression-eval": "^5.3.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.5",
"@types/node": "^25.5.2",
"jsdom": "^29.0.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"powerkeys": "link:",
"preact": "^10.29.1",
"radashi": "^12.7.2",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite": "^8.0.5",
"vitest": "^4.1.2"
}
}