-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "node-jxa-workspace-automation",
"version": "1.3.1",
"description": "Packaging node + jxa scripts to use for automating macos based workspaces",
"main": "dist/main.js",
"types": "./dist/main.d.ts",
"exports": "./dist/main.js",
"files": [
"dist",
"dist/lib"
],
"publisher": "lorenzejay",
"homepage": "https://github.com/lorenzejay/node-jxa-automate-workspace",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"view-package": "npm pack",
"version-patch": "npm version patch",
"version-minor": "npm version minor",
"version-major": "npm version major",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:lorenzejay/node-jxa-automate-workspace.git"
},
"keywords": [
"automation",
"node",
"applescript",
"jxa",
"workspace",
"productivity"
],
"author": "Lorenze Jay Hernandez",
"license": "ISC",
"dependencies": {
"@jxa/global-type": "^1.3.6",
"@jxa/run": "^1.3.6",
"airtable": "^0.12.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.5.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}