-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.06 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
{
"name": "@nosana/sdk",
"version": "0.3.57",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"browser": "dist/index.browser.js",
"module": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run prepare && tsc",
"build:browser": "npm run prepare && rollup -c",
"prepare": "ts-patch install && typia patch",
"test": "jest --watch",
"example": "npx ts-node --esm examples/example.ts",
"publish:public": "npm version patch && npm run build && npm run build:browser && npm publish --access public"
},
"keywords": [],
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"author": "Laurens Verspeek",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.8",
"rollup": "^3.26.3",
"rollup-plugin-polyfill-node": "^0.12.0",
"ts-jest": "^29.2.5",
"typescript": "*"
},
"dependencies": {
"@coral-xyz/anchor": "^0.28.1-beta.1",
"@metaplex-foundation/mpl-core": "^1.1.1",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.78.0",
"axios": "^1.6.5",
"axios-retry": "^3.5.1",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"form-data": "^4.0.0",
"ts-patch": "^3.2.1",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"typia": "^6.11.0",
"util": "^0.12.5"
}
}