forked from StellarRouter/StellarRouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "stellar-router-sdk",
"version": "0.1.0",
"description": "A JavaScript/TypeScript client SDK for the stellar-router Soroban contract suite.",
"keywords": [
"stellar",
"soroban",
"router",
"stellar-router",
"smart-contracts"
],
"license": "MIT",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/use-cjs-package-type.cjs",
"build:types": "tsc -p tsconfig.types.json",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run test/integration",
"prepack": "npm run build"
},
"dependencies": {
"@stellar/stellar-sdk": "^16.2.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.13.3",
"eslint": "^9.38.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.48.1",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@stellar/freighter-api": "^3.1.0"
},
"peerDependenciesMeta": {
"@stellar/freighter-api": {
"optional": true
}
}
}