-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
51
52
{
"name": "opentui-gameboy",
"version": "0.1.0",
"description": "A plug-and-play GameBoy emulator component for @opentui/core",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --external @opentui/core --external serverboy && tsc --emitDeclarationOnly",
"check": "tsc --noEmit",
"prepublishOnly": "bun run build",
"dev:example": "bun run examples/basic/index.ts",
"test": "bun test",
"lint": "eslint 'src/**/*.ts' 'examples/**/*.ts'",
"preflight": "bun run lint && bun run check && bun run test && bun run build"
},
"keywords": [
"gameboy",
"emulator",
"tui",
"terminal",
"opentui"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@opentui/core": ">=0.1.75"
},
"dependencies": {
"serverboy": "^0.0.7"
},
"devDependencies": {
"@opentui/core": "0.1.75",
"@types/bun": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"typescript": "^5.0.0"
}
}