-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "@lily-protocol/agentlily-runtime",
"version": "0.1.0",
"description": "Contributor-ready runtime foundation for AgentLily autonomous execution on Stellar.",
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src tests vitest.config.ts",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"verify": "npm run format:check && npm run lint && npm run typecheck && npm run test"
},
"keywords": [
"agent",
"runtime",
"stellar",
"autonomous-agents",
"lily-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/lily-protocol/agentlily-runtime.git"
},
"bugs": {
"url": "https://github.com/lily-protocol/agentlily-runtime/issues"
},
"homepage": "https://github.com/lily-protocol/agentlily-runtime#readme",
"author": "Lily Protocol",
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/node": "^22.15.30",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vitest": "^3.2.4"
}
}