-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
{
"name": "@onsol/tldsolve",
"version": "1.0.1",
"description": "Solana Multi Name Service Protocol Solver.",
"repository": "https://github.com/onsol-labs/tldsolve",
"license": "MIT",
"files": [
"/dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && yarn build:cjs; yarn build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:cjs:watch": "concurrently \"tsc --project tsconfig.cjs.json --watch\"",
"build:esm": "tsc --project tsconfig.esm.json",
"build:esm:watch": "concurrently \"tsc --project tsconfig.esm.json --watch\"",
"pretty": "prettier --check '{,{src,tests}/**/}*.{j,t}s'",
"pretty:fix": "prettier --write '{,{src,tests}/**/}*.{j,t}s'",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@bonfida/spl-name-service": "^0.1.64",
"@metaplex-foundation/beet-solana": "^0.4.0",
"@onsol/tldparser": "^0.4.4",
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.66.0",
"axios": "^1.3.3",
"bigint-buffer": "^1.1.5",
"bn.js": "^5.2.0",
"borsh": "^0.7.0",
"buffer": "6.0.1",
"p-limit": "3.1.0",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@jest/types": "^29.3.1",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-jasmine2": "^29.3.1",
"prettier": "^2.3.0",
"ts-jest": "^29.0.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{js,jsx,css,md,json}": "prettier --write --cache",
"*.{ts,tsx}": [
"prettier --write --cache"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"engines": {
"node": ">=16"
}
}