-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.21 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@sorostream/sdk",
"version": "0.1.0",
"private": true,
"workspaces": [
".",
"packages/react",
"packages/vue",
"packages/cli",
"packages/react-native",
"packages/eslint-plugin"
],
"description": "TypeScript SDK for the SoroStream payment streaming protocol on Stellar Soroban",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./wallets": {
"types": "./dist/wallets.d.ts",
"import": "./dist/wallets.mjs",
"require": "./dist/wallets.js"
},
"./mock": {
"types": "./dist/mock.d.ts",
"import": "./dist/mock.mjs",
"require": "./dist/mock.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.mjs",
"require": "./dist/testing.js"
},
"./simulator": {
"types": "./dist/simulator.d.ts",
"import": "./dist/simulator.mjs",
"require": "./dist/simulator.js"
},
"./schemas/*": "./schemas/*"
},
"contracts": {
"minCompatibleVersion": "1.0.0",
"maxCompatibleVersion": "1.99.99"
},
"scripts": {
"build": "tsup src/index.ts src/wallets.ts src/mock.ts src/testing.ts src/simulator.ts --format cjs,esm --dts --clean && npm run validate-exports",
"postbuild": "npm run generate-integrity",
"generate-integrity": "node scripts/generate-integrity-manifest.js",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "tsc --noEmit",
"check:changeset": "node scripts/check-changeset.js",
"generate-schemas": "node scripts/generate-schemas.js",
"check:schemas": "node scripts/check-schemas.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:changelog": "node scripts/check-changelog-format.js",
"check:audit": "npm audit --audit-level=high --omit=dev",
"build:all": "npm run build && npm run build -w packages/react && npm run build -w packages/cli && npm run build -w packages/react-native && npm run build -w packages/eslint-plugin",
"docs": "typedoc",
"validate-exports": "node scripts/validate-exports.js",
"test:cjs": "node scripts/cjs-smoke-test.js",
"prepublishOnly": "npm run validate-exports"
},
"keywords": [
"stellar",
"soroban",
"streaming",
"payments",
"usdc",
"web3"
],
"license": "MIT",
"dependencies": {
"@ledgerhq/hw-app-str": "^7.7.4",
"@ledgerhq/hw-transport": "^6.35.4",
"@opentelemetry/api": "^1.9.1",
"@stellar/freighter-api": "^3.0.0",
"@stellar/stellar-sdk": "^13.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@types/node": "^22.0.0",
"fast-check": "^3.22.0",
"graphql": "^16.14.2",
"prettier": "^3.3.0",
"rxjs": "^7.8.1",
"ts-json-schema-generator": "^2.9.0",
"tsup": "^8.0.0",
"typedoc": "^0.28.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0",
"vue": "^3.5.0"
},
"files": [
"dist",
"schemas"
],
"repository": {
"type": "git",
"url": "https://github.com/SoroStream/sorostream-sdk.git"
}
}