forked from tokyoweb3/LazyGravity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.04 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.04 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
{
"name": "lazy-gravity",
"version": "0.3.0",
"description": "Control Antigravity from anywhere — a local, secure bot (Discord + Telegram) that lets you remotely operate Antigravity on your home PC from your smartphone.",
"main": "dist/index.js",
"bin": {
"lazy-gravity": "dist/bin/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run test:unit",
"test:unit": "jest",
"test:integration": "jest tests/e2e.bot.test.ts",
"test:watch": "jest --watch",
"build": "tsc",
"start": "ts-node src/bin/cli.ts",
"start:built": "node dist/bin/cli.js",
"dev": "ts-node-dev --respawn src/bin/cli.ts",
"docs:diagram": "mmdc -i docs/diagrams/architecture.mmd -o docs/images/architecture.svg -b transparent",
"prepublishOnly": "npm run build"
},
"keywords": [
"discord",
"bot",
"ai",
"antigravity",
"remote-control"
],
"author": "LazyGravity Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tokyoweb3/LazyGravity.git"
},
"bugs": {
"url": "https://github.com/tokyoweb3/LazyGravity/issues"
},
"homepage": "https://github.com/tokyoweb3/LazyGravity#readme",
"dependencies": {
"@inquirer/select": "^4.4.2",
"better-sqlite3": "^12.6.2",
"commander": "^14.0.3",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"grammy": "^1.41.1",
"node-cron": "^4.2.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^11.12.0",
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^28.1.0",
"minimatch": "^10.2.1",
"semantic-release": "^25.0.3",
"ts-jest": "^29.4.6",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"undici": "^7.22.0"
}
}