-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "keyboard-auto-type",
"version": "0.1.12",
"description": "Node.js bindings for keyboard-auto-type",
"main": "build/Release/keyboard-auto-type.node",
"types": "node-keyboard-auto-type.d.ts",
"scripts": {
"start": "npm run build",
"clean": "rm -rf build/Release bin",
"clean-all": "rm -rf build bin tmp xcode",
"build": "node-gyp configure build",
"validate-typings": "tsc node-keyboard-auto-type.d.ts",
"generate-xcode-project": "node-gyp configure -- -f xcode && mkdir -p xcode/node-keyboard-auto-type.xcodeproj && mv build/binding.xcodeproj/project.pbxproj xcode/node-keyboard-auto-type.xcodeproj/project.pbxproj",
"lint": "eslint example.js",
"example": "node example.js",
"format": "npm run prettier && npm run clang-format",
"clang-format": "clang-format -i --verbose src/*",
"prettier": "prettier --write example.js node-keyboard-auto-type.d.ts",
"validate": "tsc node-keyboard-auto-type.d.ts"
},
"author": "Antelle",
"license": "MIT",
"gypfile": true,
"repository": {
"type": "git",
"url": "git://github.com/antelle/node-keyboard-auto-type.git"
},
"dependencies": {
"node-addon-api": "^3.1.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"eslint": "^7.16.0",
"node-gyp": "^7.1.2",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}