-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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
{
"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": "rm -rf dist && tsc -p tsconfig.build.json && rollup -c rollup.config.mjs",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:cli": "npm --prefix create-streamfi-app test",
"test:e2e": "playwright test --config tests/browser/playwright.config.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts"
},
"peerDependencies": {
"@stellar/stellar-sdk": "^12.0.0"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^1.0.0",
"@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",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^8.57.0",
"playwright": "^1.62.0",
"rollup": "^4.18.0",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "^5.5.3",
"vitest": "^4.1.10"
},
"dependencies": {
"dotenv": "^16.6.1",
"tslib": "^2.8.1"
},
"sideEffects": false
}