-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "ts-test-client",
"version": "0.0.0",
"description": "Client to test lighthouse-sdk",
"sideEffects": false,
"module": "dist/src/index.mjs",
"main": "dist/src/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"build:docs": "typedoc",
"test": "ava",
"lint": "eslint --ext js,ts,tsx src",
"lint:fix": "eslint --fix --ext js,ts,tsx src",
"format": "prettier --check src test",
"format:fix": "prettier --write src test"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"@metaplex-foundation/umi": "0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.1",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "1.91.7",
"js-sha3": "^0.9.3",
"lighthouse-sdk-legacy": "^0.1.2"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"ava": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typedoc-plugin-expand-object-like-types": "^0.1.2",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@9.0.3"
}