-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"name": "@mison/ling",
"version": "1.2.4",
"description": "面向 Gemini CLI、Antigravity 与 Codex 的中文 AI Agent 模板工具包",
"repository": {
"type": "git",
"url": "git+https://github.com/MisonL/Ling.git"
},
"homepage": "https://github.com/MisonL/Ling#readme",
"bugs": {
"url": "https://github.com/MisonL/Ling/issues"
},
"keywords": [
"ling",
"ai",
"agent",
"gemini",
"skills",
"templates"
],
"author": "Mison",
"contributors": [
"vudovn"
],
"license": "MIT",
"scripts": {
"clean": "node scripts/clean.js",
"clean:dry-run": "node scripts/clean.js --dry-run",
"health-check": "node scripts/health-check.js",
"postinstall": "node scripts/postinstall-check.js",
"test": "node scripts/run-tests.js",
"ci:verify": "node scripts/ci-verify.js"
},
"publishConfig": {
"access": "public"
},
"files": [
".agents/**",
".spec/**",
"bin/**",
"scripts/clean.js",
"scripts/ci-verify.js",
"scripts/health-check.js",
"scripts/health-check.sh",
"scripts/postinstall-check.js",
"scripts/run-tests.js",
"tests/**/*.test.js",
"README.md",
"LICENSE",
"CHANGELOG.md",
"AGENT_FLOW.md",
"docs/PLAN.md",
"docs/TECH.md"
],
"bin": {
"ling": "bin/ling.js"
}
}