-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.73 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
{
"name": "@o1-labs/mina-rosetta-sdk",
"version": "0.0.2",
"description": "TypeScript SDK for the Mina Rosetta (Coinbase Mesh) endpoints — Data + Construction APIs, complements mina-signer",
"repository": {
"type": "git",
"url": "https://github.com/o1-labs/mina-rosetta-sdk-js"
},
"homepage": "https://github.com/o1-labs/mina-rosetta-sdk-js",
"bugs": "https://github.com/o1-labs/mina-rosetta-sdk-js/issues",
"license": "Apache-2.0",
"author": "O(1) Labs <build@o1labs.org>",
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/src/index.js"
}
},
"files": [
"build/src",
"src",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20.18.0"
},
"keywords": [
"mina",
"mina-protocol",
"rosetta",
"mesh",
"coinbase",
"blockchain",
"exchange-integration",
"sdk"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf build && tsc",
"test": "npm run build && npm run test:unit",
"test:unit": "node --enable-source-maps --test ./build/tests/*.test.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/**/*.ts'",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"mina-signer": "^4.0.0 || ^3.0.0"
},
"peerDependenciesMeta": {
"mina-signer": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"prettier": "3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}