-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.67 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.67 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
95
96
97
{
"name": "@paperline/node-accessibility",
"version": "0.1.5",
"description": "Native macOS Accessibility API integration for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaperlineAI/node-accessibility.git"
},
"homepage": "https://github.com/PaperlineAI/node-accessibility#readme",
"bugs": {
"url": "https://github.com/PaperlineAI/node-accessibility/issues"
},
"files": [
"dist",
"scripts",
"Sources",
"Package.swift",
"Package.resolved"
],
"scripts": {
"build": "pnpm run build:swift && pnpm run build:ts && pnpm run copy:native",
"build:debug": "pnpm run build:swift:debug && pnpm run build:ts && pnpm run copy:native:debug",
"dev": "pnpm run build:swift:debug && pnpm run build:ts:dev",
"build:swift": "node-swift build",
"build:swift:debug": "node-swift build --debug",
"build:ts": "tsup",
"build:ts:dev": "tsup --watch",
"build:ts:fast": "tsup --sourcemap --dts false",
"copy:native": "tsx scripts/copy-native.ts release",
"copy:native:debug": "tsx scripts/copy-native.ts debug",
"rebuild:debug": "node-swift rebuild --debug",
"rebuild:release": "node-swift rebuild",
"clean": "node-swift clean && rm -rf dist",
"prepublishOnly": "pnpm run build",
"test": "pnpm run build:swift:debug && node dist/test.js",
"publish:dry": "npm publish --dry-run",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"version:patch": "npm version patch --no-git-tag-version",
"version:minor": "npm version minor --no-git-tag-version",
"version:major": "npm version major --no-git-tag-version"
},
"keywords": [
"macos",
"accessibility",
"window-management",
"automation",
"swift",
"native",
"nodejs",
"typescript",
"axkit",
"window-focus",
"app-automation",
"system-integration",
"nodeswift"
],
"author": {
"name": "Evgenii Mozharovskii",
"email": "evgenii@paperline.ai"
},
"license": "MIT",
"dependencies": {
"node-swift": "git+https://github.com/kabiroberai/node-swift.git"
},
"devDependencies": {
"@types/node": "latest",
"tsup": "^8.5.0",
"tsx": "^4.20.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"os": [
"darwin"
],
"cpu": [
"x64",
"arm64"
],
"publishConfig": {
"access": "public"
}
}