-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "@cygnus-wealth/sol-integration",
"version": "0.1.0",
"description": "Read-only Solana integration for CygnusWealth portfolio aggregation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:unit": "vitest run --exclude '**/e2e/**'",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"test:integration": "vitest run src/test/integration",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"solana",
"web3",
"spl-tokens",
"nft",
"cygnus-wealth",
"ddd",
"portfolio"
],
"author": "CygnusWealth",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Cygnus-Wealth/sol-integration.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^3.2.4",
"jsdom": "^26.1.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@cygnus-wealth/data-models": "^1.0.0",
"@metaplex-foundation/js": "^0.20.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.4"
},
"type": "commonjs"
}