-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.81 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
78
79
80
{
"name": "ape-claw",
"version": "0.1.11",
"description": "ApeChain bridge and NFT execution CLI with telemetry for OpenClaw agents",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/simplefarmer69/ape-claw.git"
},
"homepage": "https://apeclaw.ai",
"bugs": {
"url": "https://github.com/simplefarmer69/ape-claw/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"src/**",
"ui/**",
"docs/**",
"config/policy.example.json",
"config/clawbots.example.json",
"allowlists/recommended.apechain.json",
"allowlists/opensea-slug-overrides.json",
"skillcards/seed/**",
"skillcards/import-sources.json",
"data/starter-pack.json",
"data/starter-pack-bundle.json",
"data/skills/lincoln-ai.json",
"data/skills/clawhub-humanizer.json",
"data/skills/clawhub-blender-forge-modeler.json",
".cursor/skills/ape-claw/SKILL.md",
"README.md"
],
"bin": {
"ape-claw": "src/cli/index.mjs"
},
"scripts": {
"test": "hardhat compile && node --test 'test/*.test.mjs' 'contracts-test/*.test.js' test-browser-console.mjs",
"test:install": "bash ./scripts/test-install.sh",
"telemetry": "node ./src/server/index.mjs",
"start:ui": "node ./src/server/index.mjs",
"telemetry:legacy": "node ./src/telemetry-server.mjs",
"contracts:compile": "hardhat compile",
"contracts:test": "hardhat test nodejs",
"contracts:test:solidity": "hardhat test solidity",
"contracts:seed": "hardhat run ./contracts-scripts/deploy-and-seed-v2-alpha.js",
"contracts:seed:apechain": "hardhat run ./contracts-scripts/deploy-and-seed-v2-alpha.js --network apechain",
"doctor": "node ./src/cli.mjs doctor --json",
"resolve:opensea-ca": "node ./scripts/resolve-ca-opensea.mjs",
"audit:allowlist": "node ./src/cli.mjs allowlist audit --json",
"audit:relay-rpcs": "node ./scripts/audit-relay-rpcs.mjs",
"skillcards:import": "node ./scripts/import-skillcards.mjs",
"skillcards:import:publish": "node ./scripts/import-skillcards.mjs --publish",
"skillcards:report": "node ./scripts/report-imported-skillcards.mjs",
"test:coverage": "c8 node --test test/cli.test.mjs test/policy.test.mjs test/server.test.mjs",
"dev": "node --watch ./src/server/index.mjs",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=22.10.0"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"opensea-js": "^8.0.15",
"pino": "^10.3.1",
"viem": "^2.45.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-node-test-runner": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^3.0.10",
"@nomicfoundation/hardhat-viem": "^3.0.2",
"@openzeppelin/contracts": "^5.4.0",
"c8": "^10.1.3",
"hardhat": "^3.1.8",
"playwright": "^1.58.2",
"sharp": "^0.34.5"
}
}