forked from ASTROIDX556/astroid-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "astroid-sdk",
"version": "0.1.0",
"private": true,
"description": "The official TypeScript developer toolkit for Astroid — the Financial Operating System for autonomous AI agents on Stellar.",
"license": "MIT",
"author": "Astroid",
"homepage": "https://github.com/AstroidHQ/astroid-sdk",
"repository": {
"type": "git",
"url": "https://github.com/AstroidHQ/astroid-sdk.git"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@11.1.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"build": "pnpm -r --filter \"./packages/*\" run build",
"typecheck": "pnpm -r --filter \"./packages/*\" run typecheck",
"test": "pnpm -r --filter \"./packages/*\" run test",
"lint": "eslint \"packages/*/src/**/*.{ts,tsx}\"",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\"",
"clean": "pnpm -r exec rimraf dist .tsbuildinfo node_modules/.cache"
},
"devDependencies": {
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "2.1.8"
}
}