-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "opencontrol",
"version": "0.2.0",
"private": true,
"description": "Open-source task and control bridge for Codex CLI, Claude Code, QMK/VIA keyboards, and gamepads.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/geareab/OpenControl.git"
},
"homepage": "https://github.com/geareab/OpenControl#readme",
"bugs": {
"url": "https://github.com/geareab/OpenControl/issues"
},
"author": "OpenControl contributors",
"contributors": [
"Stephen Leo (OpenMicro original author)"
],
"type": "module",
"bin": {
"opencontrol": "dist/cli.js",
"openmicro": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./harness": {
"types": "./dist/harness/index.d.ts",
"default": "./dist/harness/index.js"
},
"./input": {
"types": "./dist/input/index.d.ts",
"default": "./dist/input/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"!dist/firmware",
"!dist/firmware/**",
"docs",
"LICENSE",
"NOTICE",
"SECURITY.md",
"THIRD_PARTY_NOTICES.md",
"CONTROLLERS.md"
],
"engines": {
"node": ">=22.23.1 <23 || >=24.18.0 <25",
"npm": ">=11.16.0 <12"
},
"packageManager": "npm@11.16.0",
"allowScripts": {
"node-pty@1.1.0": true,
"node-hid@3.3.0": true,
"esbuild@0.28.1": true,
"fsevents@2.3.3": true
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts",
"test": "vitest run --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:firmware": "bash firmware/ci/run-portable-tests.sh",
"prepare:firmware:k4p-h3": "bash firmware/targets/keychron_k4_pro_ansi_rgb/prepare.sh",
"security:manifest": "node scripts/check-manifest-policy.mjs",
"security:licenses": "node scripts/check-licenses.mjs",
"security:package": "node scripts/check-package-contents.mjs",
"security:rebuild": "node scripts/rebuild-reviewed-dependencies.mjs",
"gen:controllers": "tsx scripts/gen-controller-table.ts && prettier --write CONTROLLERS.md",
"verify": "npm run typecheck && npm run lint && npm run format:check && npm run test",
"verify:release": "npm run verify && npm run test:firmware && npm run security:manifest && npm run security:licenses && npm run build && npm run security:package"
},
"dependencies": {
"dualsense-ts": "6.15.38",
"node-hid": "3.3.0",
"node-pty": "1.1.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "22.20.1",
"eslint": "9.39.5",
"prettier": "3.9.5",
"tsx": "4.23.1",
"typescript": "5.9.3",
"typescript-eslint": "8.64.0",
"vitest": "3.2.7"
}
}