-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "robot-ts",
"version": "2.0.1",
"description": "Cross-platform keyboard, mouse, and screen automation for Node.js, with a physical-key vs text model, per-monitor DPI-aware capture, and explicit capability reporting.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/developer239/robot-ts.git"
},
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=18.17.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"native/src/",
"native/CMakeLists.txt",
"native/vendor/robot-cpp/CMakeLists.txt",
"native/vendor/robot-cpp/include/",
"native/vendor/robot-cpp/src/",
"native/vendor/robot-cpp/cmake/",
"native/vendor/robot-cpp/externals/lodepng/",
"prebuilds/",
"README.md",
"LICENSE"
],
"scripts": {
"build:native": "cmake-js compile --directory native --out native/build --config Release",
"build:native:debug": "cmake-js compile --directory native --out native/build --config Debug",
"build:ts": "tsc --project tsconfig.build.json",
"build": "pnpm run build:native && pnpm run build:ts",
"clean": "cmake-js clean --directory native --out native/build && rimraf dist",
"rebuild": "pnpm run clean && pnpm run build",
"prepack": "pnpm run build:ts",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run --dir test/unit",
"test:watch": "vitest --dir test/unit"
},
"keywords": [
"automation",
"keyboard",
"mouse",
"screen",
"input",
"robot",
"robotjs",
"napi",
"node-addon-api",
"cross-platform",
"screen-capture",
"cmake-js"
],
"dependencies": {
"cmake-js": "7.3.0",
"node-addon-api": "8.3.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "9.17.0",
"rimraf": "6.0.1",
"semantic-release": "21.0.1",
"typescript": "5.7.2",
"vitest": "2.1.8"
}
}