-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
55
56
57
58
59
60
{
"name": "@solana/spl-single-pool-classic",
"version": "1.0.2",
"main": "dist/src/index.js",
"module": "dist/src/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.js"
}
},
"scripts": {
"prepublishOnly": "pnpm build",
"clean": "rm -rf dist/*",
"build": "rm -rf dist/* && tsup && tsc -p ./tsconfig.declarations.json",
"build:program": "cargo build-sbf --manifest-path=../../program/Cargo.toml",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint . --fix",
"test": "ava --serial",
"prepublishOnly": "pnpm build"
},
"files": [
"./dist/src",
"./dist/types"
],
"devDependencies": {
"@types/node": "^24.3.0",
"@ava/typescript": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"ava": "^6.4.1",
"eslint": "^8.57.0",
"solana-bankrun": "^0.4.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@solana/web3.js": "^1.98.4",
"@solana/addresses": "3.0.1",
"@solana/prettier-config-solana": "^0.0.5",
"@solana/spl-single-pool": "workspace:*",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2"
},
"ava": {
"nodeArguments": [
"--no-warnings"
],
"typescript": {
"compile": false,
"rewritePaths": {
"tests/": "dist/test/"
}
}
}
}