-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
{
"name": "@laserware/keytar",
"version": "3.1.0",
"description": "Handle keyboard and mouse events in the browser.",
"author": "Mike Rourke <mike.w.rourke@gmail.com> (https://mikerourke.dev/)",
"license": "MIT",
"repository": {
"url": "git+https://github.com/laserware/keytar.git",
"type": "git"
},
"homepage": "https://laserware.github.io/keytar/",
"type": "module",
"browser": "dist/index.mjs",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"keywords": [
"keyboard"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepublishOnly": "bun run build",
"preversion": "bun run check:biome && bun run check:types",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check:biome": "biome check --write src",
"check:types": "tsc --noEmit",
"ci": "biome ci src",
"docs:generate": "typedoc --options typedoc.json",
"docs:serve": "mkdir -p ./site && cd ./site && bunx vite",
"test": "bun test"
},
"dependencies": {
"@laserware/arcade": "^3.13.3"
},
"devDependencies": {
"@types/bun": "^1.1.16",
"@biomejs/biome": "1.9.4",
"jsdom": "^26.0.0",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}