-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "google-docs-markdown-sync",
"version": "0.8.11",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"gdms": "./src/cli.js"
},
"scripts": {
"auth": "node src/cli.js auth",
"cli": "node src/cli.js",
"sync": "node src/cli.js daemon",
"sync:once": "node src/cli.js sync-once",
"install-service": "node src/cli.js install-service",
"install-finder-action": "node src/cli.js install-finder-action",
"heartbeat": "node src/cli.js heartbeat",
"install-heartbeat": "node src/cli.js install-heartbeat",
"build:raycast": "npm --prefix raycast-extension run build",
"test": "node --test test/*.test.js test/**/*.test.js",
"test:google": "node --test test/google/*.test.js",
"test:sync": "node --test test/sync/*.test.js",
"check": "node --check src/cli.js && npm test && npm --prefix raycast-extension run typecheck"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1107.0",
"@google-cloud/local-auth": "^3.0.1",
"googleapis": "^160.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5"
}
}