-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.81 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
{
"name": "@novatip/sdk",
"version": "0.1.0",
"description": "TypeScript SDK for the Novatip tip-splitter contract on Stellar/Soroban",
"author": "Novatip",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@stellar/stellar-sdk": "^12.3.0"
},
"peerDependencies": {
"@stellar/freighter-api": ">=2.0.0"
},
"peerDependenciesMeta": {
"@stellar/freighter-api": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18"
},
"keywords": [
"stellar",
"soroban",
"novatip",
"tipping",
"usdc",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/novatip/novatip-sdk"
}
}