forked from conduit-protocol/streamFi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "@conduit-protocol/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for the Conduit streaming payments protocol on Stellar.",
"license": "MIT",
"author": "Conduit Protocol contributors",
"repository": {
"type": "git",
"url": "https://github.com/conduit-protocol/streamFi-sdk.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./utils": {
"import": "./dist/esm/utils.js",
"require": "./dist/cjs/utils.js",
"types": "./dist/types/utils.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && rollup -c rollup.config.mjs",
"prepublishOnly": "npm run build",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts"
},
"peerDependencies": {
"@stellar/stellar-sdk": "^12.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@stellar/stellar-sdk": "^12.0.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.14.0",
"@typescript-eslint/parser": "^7.14.0",
"eslint": "^8.57.0",
"rollup": "^4.18.0",
"typescript": "^5.5.3",
"vitest": "^4.1.10"
},
"dependencies": {
"tslib": "^2.8.1"
}
}