-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.83 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.83 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
{
"name": "antigravity-kit",
"version": "0.0.6",
"description": "CLI toolkit to manage antigravity IDE rules and commands",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"antigravity-kit": "./dist/cli.js",
"antigravikit": "./dist/cli.js",
"agk": "./dist/cli.js"
},
"files": [
"dist",
"templates",
"bin"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.mjs",
"typecheck": "tsc --noEmit",
"lint": "biome check --write",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"keywords": [
"antigravity",
"antigravity-ide",
"cli",
"rules",
"commands",
"ai",
"productivity"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/duongductrong/antigravity-kit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"archiver": "^7.0.1",
"better-sqlite3": "^11.7.0",
"citty": "^0.1.6",
"cli-table3": "^0.6.5",
"consola": "^3.2.3",
"defu": "^6.1.4",
"figlet": "^1.8.0",
"giget": "^1.2.3",
"gradient-string": "^3.0.0",
"keytar": "^7.9.0",
"localtunnel": "^2.0.2",
"picocolors": "^1.1.1",
"unzipper": "^0.12.3"
},
"optionalDependencies": {
"ngrok": "^5.0.0-beta.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/archiver": "^6.0.3",
"@types/better-sqlite3": "^7.6.12",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.9.0",
"@types/unzipper": "^0.10.10",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}