-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
85 lines (85 loc) · 2.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@bonfida/spl-name-service",
"version": "3.0.9",
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Bonfida/sns-sdk"
},
"homepage": "https://sns.guide",
"scripts": {
"dev": "tsc && node --trace-warnings dist/test.js",
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly --outDir dist/types",
"prepublish": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly --outDir dist/types",
"prepack": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly --outDir dist/types",
"lint": "yarn pretty && eslint .",
"lint:fix": "yarn pretty:fix && eslint . --fix",
"pretty": "prettier --check 'src/*.[jt]s'",
"pretty:fix": "prettier --write 'src/*.[jt]s'",
"test": "jest ./tests"
},
"devDependencies": {
"@bonfida/prettier-config": "^1.0.0",
"@metaplex-foundation/js": "^0.20.1",
"@pythnetwork/client": "^2.19.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/recommended": "^1.0.3",
"@types/bn.js": "^5.1.5",
"@types/bs58": "^4.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.3",
"babel-eslint": "^10.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"mathjs": "^12.4.2",
"prettier": "^3.1.0",
"rollup-plugin-multi-input": "^1.4.1",
"rollup-plugin-visualizer": "^5.12.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.2"
},
"dependencies": {
"@bonfida/sns-records": "0.0.1",
"@noble/curves": "^1.4.0",
"@scure/base": "^1.1.6",
"@solana/spl-token": "0.4.6",
"borsh": "2.0.0",
"buffer": "^6.0.3",
"graphemesplit": "^2.4.4",
"ipaddr.js": "^2.2.0",
"punycode": "^2.3.1"
},
"peerDependencies": {
"@solana/web3.js": "^1.87.3"
},
"prettier": "@bonfida/prettier-config",
"volta": {
"node": "20.10.0"
}
}