-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.24 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
{
"name": "lark-project-cli",
"version": "1.0.1",
"description": "Lark Project CLI - Universal API command-line interface for Lark Project",
"main": "dist/index.js",
"bin": {
"lark-project": "dist/cli.js"
},
"scripts": {
"build": "node ./node_modules/typescript/bin/tsc",
"dev": "npx ts-node src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
".env.example",
"docs/setup-guide.md",
"package.json"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"lark",
"larksuite",
"project",
"cli"
],
"author": "suchang",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dotenv": "^16.4.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.8.0"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juzibot/lark-project-cli.git"
},
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/juzibot/lark-project-cli/issues"
},
"homepage": "https://github.com/juzibot/lark-project-cli#readme"
}