-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.03 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.03 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
{
"name": "@solana/kora",
"version": "0.2.0-beta.5",
"description": "TypeScript SDK for Kora RPC",
"main": "dist/src/index.js",
"type": "module",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:auth": "ENABLE_AUTH=true pnpm test integration.test.ts",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "pnpm test integration.test.ts",
"test:integration:auth": "ENABLE_AUTH=true pnpm test integration.test.ts",
"test:integration:free": "FREE_PRICING=true pnpm test integration.test.ts",
"test:integration:privy": "KORA_SIGNER_TYPE=privy pnpm test integration.test.ts",
"test:integration:turnkey": "KORA_SIGNER_TYPE=turnkey pnpm test integration.test.ts",
"test:unit": "pnpm test unit.test.ts",
"test:ci:integration": "node scripts/test-with-validator.js",
"test:ci:integration:auth": "ENABLE_AUTH=true node scripts/test-with-validator.js",
"test:ci:unit": "jest test/unit.test.ts",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prepare": "pnpm run build",
"type-check": "tsc --noEmit",
"docs": "typedoc --readme none && node scripts/add-toc.js",
"docs:html": "typedoc --options typedoc.html.json",
"docs:watch": "typedoc --watch",
"docs:serve": "pnpm run docs:html && npx serve docs-html",
"docs:api": "node scripts/generate-api-docs.js",
"docs:all": "pnpm run docs && pnpm run docs:api"
},
"files": [
"dist"
],
"keywords": [
"kora",
"solana",
"blockchain",
"sdk"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solana-foundation/kora",
"directory": "sdks/ts"
},
"peerDependencies": {
"@solana-program/token": "^0.10.0",
"@solana/kit": "^6.1.0",
"@solana/kit-plugin-instruction-plan": "^0.6.0",
"@solana/kit-plugin-payer": "^0.6.0",
"@solana/kit-plugin-rpc": "^0.6.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@solana-program/compute-budget": "^0.13.0",
"@solana-program/system": "^0.11.0",
"@solana-program/token": "^0.10.0",
"@solana/eslint-config-solana": "6.0.0",
"@solana/kit-plugin-instruction-plan": "^0.6.0",
"@solana/kit-plugin-payer": "^0.6.0",
"@solana/kit-plugin-rpc": "^0.6.0",
"@solana/kit": "^6.1.0",
"@solana/prettier-config-solana": "^0.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.27",
"dotenv": "^16.4.5",
"eslint": "^9.39.3",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"globals": "^16.5.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.9",
"typedoc-plugin-markdown": "^4.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"ws": "^8.18.3"
}
}