-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.34 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@onsol/tldparser-kit",
"version": "1.0.2",
"description": "TLD House Solana Javascript API",
"keywords": [
"api",
"wallet",
"blockchain",
"tld house"
],
"license": "MIT",
"author": "CryptoMiester <crypt0miester@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/onsol-labs/tld-parser-kit.git"
},
"bugs": {
"url": "http://github.com/onsol-labs/tld-parser-kit.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": {
"@solana-program/token": "^0.9.0",
"@solana/kit": "^5.1.0",
"p-limit": "^7.2.0",
"ws": "^8.18.3",
"yocto-queue": "^1.2.2"
},
"devDependencies": {
"@jest/types": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"buffer": "^6.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"jest-jasmine2": "^30.2.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}