-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 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
86
87
88
89
{
"name": "@onsol/tldparser",
"version": "0.6.7",
"description": "TLD House (Solana) Javascript API",
"keywords": [
"api",
"wallet",
"blockchain",
"tld house"
],
"license": "MIT",
"author": "CryptoMiester <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/onsol-labs/tld-parser.git"
},
"bugs": {
"url": "http://github.com/onsol-labs/tld-parser.git/issues"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"defaults"
],
"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",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"prepublish": "npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:cjs; npm run 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\"",
"lint": "set -ex; npm run pretty; eslint . --ext .js,.ts",
"lint:fix": "npm run pretty:fix && eslint . --fix --ext .js,.ts",
"pretty": "prettier --check '{,{src,test}/**/}*.{j,t}s'",
"pretty:fix": "prettier --write '{,{src,test}/**/}*.{j,t}s'",
"test": "jest --config jest.config.ts"
},
"dependencies": {
"@ethersproject/sha2": "^5.7.0",
"@metaplex-foundation/beet-solana": "^0.4.0"
},
"devDependencies": {
"@jest/types": "^29.3.1",
"@solana/web3.js": "^1.95.3",
"@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",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"buffer": "6.0.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.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@solana/web3.js": "^1.95.3",
"bn.js": "^5.2.1",
"borsh": "^0.7.0",
"buffer": "6.0.1"
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}