-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "@percolatorct/sdk",
"version": "5.0.0",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly --declaration --outDir dist",
"test": "tsx test/abi.test.ts && tsx test/slab.test.ts && tsx test/validation.test.ts && tsx test/dex-oracle.test.ts && tsx test/trading.test.ts && tsx test/warmup-leverage-cap.test.ts && tsx test/dynamic-fees.test.ts && tsx test/oracle.test.ts && vitest run",
"lint": "tsc --noEmit",
"verify-layout": "tsx scripts/verify-layout.ts",
"update-parity-fixtures": "node scripts/update-parity-fixtures.mjs",
"parity:check": "node scripts/check-parity-fixtures.mjs"
},
"dependencies": {
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.95.4"
},
"devDependencies": {
"@types/node": "^20.17.10",
"dotenv": "^17.4.1",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}