-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 940 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 940 Bytes
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
{
"name": "@liftoffllc/cursor-ops-kit",
"version": "1.2.1",
"description": "A toolkit for managing Cursor AI configurations across different project roles",
"main": "lib/init.js",
"bin": {
"cursor-ops": "bin/cli.js"
},
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint .",
"prepare": "node scripts/prepare.js"
},
"keywords": [
"cursor",
"ai",
"configuration",
"toolkit"
],
"author": "LiftOff LLC",
"license": "MIT",
"dependencies": {
"fs-extra": "^11.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LiftOffLLC/cursor-ops-kit.git"
},
"bugs": {
"url": "https://github.com/LiftOffLLC/cursor-ops-kit/issues"
},
"homepage": "https://github.com/LiftOffLLC/cursor-ops-kit#readme"
}