forked from 0xNgoo/anchor-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "anchor-kit",
"version": "0.0.4-beta",
"description": "A developer-friendly SDK for implementing Stellar anchor services",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "rm -rf dist && bun build src/index.ts --outdir dist --target node --format esm --packages external && bunx tsc -p tsconfig.types.json && node scripts/fix-dts-imports.mjs",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit && eslint . --max-warnings 0",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@stellar/stellar-sdk": "^14.6.0",
"@types/bcryptjs": "^3.0.0",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^7.2.0",
"bcryptjs": "^3.0.3",
"big.js": "^7.0.1",
"express": "^5.2.1",
"isomorphic-dompurify": "^3.0.0",
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.3",
"pg": "^8.19.0",
"supertest": "^7.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/big.js": "^6.2.2",
"@types/bun": "latest",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"typescript": "^5"
},
"types": "./dist/index.d.ts"
}