-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.9 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
73
74
75
76
77
{
"name": "nexbench",
"version": "2.1.7",
"description": "NEXBENCH — the reproducible benchmark for autonomous Web3 agents: harness, CLI, task suite, statistics, and tamper-evident submission pipeline.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20.10"
},
"bin": {
"nexbench": "dist/src/cli/index.js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./core": {
"types": "./dist/src/core/index.d.ts",
"default": "./dist/src/core/index.js"
},
"./evidence": {
"types": "./dist/src/evidence.d.ts",
"default": "./dist/src/evidence.js"
}
},
"files": [
"dist/src",
"tasks",
"environments",
"results",
"schemas",
"examples",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && node --test dist/tests/*.test.js",
"release:verify": "npm run build && node scripts/verify-release.mjs",
"experiment:bootstrap": "npm run build && node dist/experiments/bootstrap-calibration.js",
"experiment:grid": "npm run build && node dist/experiments/grid-detection.js",
"prepublishOnly": "npm test && npm run release:verify",
"prepack": "npm run build"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nexis-AI/NexBench.git"
},
"homepage": "https://nex-t1.ai/benchmarks",
"bugs": {
"url": "https://github.com/Nexis-AI/NexBench/issues"
},
"keywords": [
"benchmark",
"web3",
"defi",
"crypto",
"ai-agents",
"llm",
"evaluation",
"onchain",
"agents"
],
"packageManager": "npm@11.5.1",
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
}
}