-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "@noosphere/sdk",
"version": "0.2.1-alpha.1",
"description": "Decentralized compute agent SDK for Noosphere protocol",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @noosphere/contracts -w @noosphere/crypto -w @noosphere/registry -w @noosphere/payload && npm run build -w @noosphere/agent-core -w @noosphere/sdk",
"test": "npm run test --workspaces",
"lint": "eslint packages/**/src/**/*.ts",
"format": "prettier --write \"packages/**/src/**/*.ts\"",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules"
},
"keywords": [
"noosphere",
"blockchain",
"compute",
"agent",
"decentralized"
],
"author": "Noosphere Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hpp-io/noosphere-sdk.git"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"esbuild": "^0.27.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"tsup": "^8.5.1",
"typechain": "^8.3.2",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}