-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.7 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
{
"name": "benoit",
"version": "0.8.0",
"description": "Benoît — The language where code is proof. Self-interpreting, self-evolving, self-proving. Il n'y a pas de mauvaise réponse, que des mauvaises dimensions.",
"type": "module",
"main": "./src/transpile.mjs",
"exports": {
".": "./src/transpile.mjs",
"./tokenizer": "./src/tokenizer.mjs",
"./infer": "./src/infer.mjs",
"./algebra": "./src/algebra.mjs",
"./protocol": "./src/protocol.mjs",
"./optimize": "./src/optimize.mjs",
"./compose": "./src/compose.mjs",
"./solve": "./src/solve.mjs",
"./types": "./src/types.mjs",
"./intent": "./src/intent.mjs",
"./diff": "./src/diff.mjs",
"./generate": "./src/generate.mjs",
"./distance": "./src/distance.mjs",
"./decompose": "./src/decompose.mjs",
"./contract": "./src/contract.mjs",
"./query": "./src/query.mjs",
"./core": "./src/core.mjs",
"./prompt": "./src/prompt.mjs",
"./mcp": "./src/mcp.mjs",
"./protocol-v2": "./src/protocol_v2.mjs",
"./mcp-v2": "./src/mcp_v2.mjs"
},
"bin": {
"benoit": "bin/benoit.mjs",
"benoit-hook": "bin/benoit-hook.mjs"
},
"scripts": {
"test": "node --test tests/*.test.mjs"
},
"keywords": [
"language",
"transpiler",
"ai",
"ai-to-ai",
"protocol",
"function-algebra",
"synthesis",
"token-efficient",
"pattern-matching",
"functional",
"benoit"
],
"author": "Robin Fragnière",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SanTiepi/benoit.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"bin/",
"examples/",
"LICENSE",
"README.md",
"SPEC.md"
]
}