-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.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
{
"name": "@solana/spl-single-pool",
"version": "1.0.0",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"prepublishOnly": "pnpm build",
"clean": "rm -fr dist/*",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./ts-fixup.sh",
"test": "tsc -p tsconfig.json",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@solana/prettier-config-solana": "^0.0.5",
"@types/node": "^24.7.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@solana/addresses": "3.0.3",
"@solana/instructions": "2.3.0",
"@solana/transaction-messages": "2.2.1"
}
}