-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.65 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.65 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": "cursor-kit-cli",
"version": "1.7.0-beta.3",
"description": "CLI toolkit to manage Cursor 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": {
"cursor-kit": "./dist/cli.js",
"cursorkit": "./dist/cli.js",
"ck": "./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"
},
"keywords": [
"cursor",
"cursor-ide",
"cli",
"rules",
"commands",
"ai",
"productivity"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/duongductrong/cursor-kit"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"archiver": "^7.0.1",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"figlet": "^1.8.0",
"giget": "^1.2.3",
"gradient-string": "^3.0.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/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"
}
}