-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 850 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 850 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
{
"name": "karn-lang",
"version": "1.0.0",
"description": "KARN — The Agent's Language. Token-minimal, platform-agnostic programming language for AI agents. 4x denser than Python.",
"main": "karn.js",
"bin": {
"karn": "bin/karn"
},
"scripts": {
"test": "echo \"See python tests\"",
"start": "python3 files/karn.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karn-lang/karn.git"
},
"keywords": [
"ai-agents",
"agent-language",
"token-efficient",
"programming-language",
"compiler",
"interpreter",
"codegen",
"agent-tools",
"llm",
"code-generation"
],
"author": "KARN Language Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/karn-lang/karn/issues"
},
"homepage": "https://github.com/karn-lang/karn#readme"
}