-
Notifications
You must be signed in to change notification settings - Fork 566
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.73 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
{
"name": "@corsair-dev/cli",
"version": "0.1.20",
"description": "Command-line tool for Corsair, the open-source integration layer. Scaffold a project, add integrations, and run your app.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"corsair": "./dist/index.js"
},
"exports": {
".": {
"dev-source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsup && tsc -p tsconfig.build.json",
"build:watch": "tsup --watch",
"typecheck": "tsc --noEmit",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@clack/prompts": "^1.0.0",
"c12": "^3.3.3",
"commander": "^14.0.3",
"corsair": "workspace:*",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.10.1",
"dotenv": "^17.2.3",
"jest": "^29.7.0",
"jiti": "^2.6.1",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"tsx": "^4.20.6",
"typescript": "^5.3.3"
},
"keywords": [
"corsair",
"cli",
"integrations",
"oauth",
"scaffold"
],
"author": "Corsair (https://corsair.dev)",
"license": "Apache-2.0",
"homepage": "https://corsair.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/corsairdev/corsair.git",
"directory": "packages/cli"
},
"packageManager": "pnpm@10.20.0",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}