-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 931 Bytes
/
package.json
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
{
"name": "auction-for-good",
"version": "0.0.45",
"license": "ISC",
"sideEffects": false,
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint:fix": "prettier */*.js */**/*{.js,.ts} -w",
"lint": "prettier */*.js */**/*{.js,.ts} --check",
"build": "rm -rf dist && tsc",
"main": "dist/index.js",
"types": "dist/index.d.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.98.0",
"@types/node": "^22.10.5"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.1",
"chai": "^4.3.4",
"eslint-plugin-require-extensions": "^0.1.3",
"mocha": "^9.0.3",
"prettier": "^2.6.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.2"
}
}