-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "@meteora-ag/presale",
"version": "0.1.0",
"description": "Presale client for Meteora AG",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "rm -rf dist && tsup",
"test": "ts-mocha -p tsconfig.json 'tests/**/*.ts'",
"prelease": "npm publish --tag next",
"release": "npm publish --access public",
"start-validator": "rm -rf test-ledger && solana-test-validator --bpf-program presSVxnf9UU8jMxhgSMqaRwNiT36qeBdNeTRKjTdbj ./tests/fixtures/presale.so --reset"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/chai": "^4.3.20",
"@types/express": "^5.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.1.0",
"chai": "^4.5.0",
"express": "^5.1.0",
"fast-check": "^4.3.0",
"mocha": "^11.7.4",
"ts-mocha": "^11.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@solana/buffer-layout": "^4.0.1",
"@solana/buffer-layout-utils": "^0.3.0",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"bn.js": "^5.2.2",
"decimal.js": "^10.6.0",
"invariant": "^2.2.4",
"js-sha256": "^0.11.1",
"tiny-invariant": "^1.3.3"
}
}