-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "stupid-input",
"version": "0.0.1",
"description": "Stupid input device for a computer created at the Stupid Hack 2021",
"main": "./dist/index.js",
"bin": {
"stupid-input": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no testing needed because we know how to code\" && exit 1",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"build": "tsc",
"dev": "nodemon",
"local": "npm run build && sudo npm i -g && stupid-input"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rennehir/stupid-input.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rennehir/stupid-input/issues"
},
"homepage": "https://github.com/rennehir/stupid-input#readme",
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"devDependencies": {
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"husky": "^6.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"jimp": "^0.16.1",
"launchpadder": "Nolux/Launchpadder#master",
"robotjs": "^0.6.0",
"terminal-art": "^1.3.1",
"tesseract.js": "^2.1.4"
}
}