forked from thirdweb-dev/typescript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@thirdweb-dev/sdk",
"version": "2.0.0-nightly.41",
"description": "The main thirdweb SDK.",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/typescript-sdk.git"
},
"license": "Apache-2.0",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"src/",
"dist/"
],
"sideEffects": false,
"scripts": {
"dev": "tsdx watch",
"build:lib": "tsup --env.NODE_ENV production --minify --format esm,cjs",
"format": "prettier src/ --write",
"prepublishOnly": "yarn lint && yarn build",
"lint": "eslint src/",
"fix": "eslint src/ --fix",
"generate-types": "tsc",
"extract-api": "api-extractor run --local",
"full-build": "yarn build:lib && yarn generate-types && yarn extract-api",
"generate-md-docs": "yarn api-documenter markdown -i ./temp -o ./docs",
"generate-docs": "yarn full-build && yarn generate-md-docs && yarn make:docs",
"generate-snippets": "node ./scripts/generate-snippets.mjs",
"build": "yarn generate-docs && yarn generate-snippets",
"test": "echo \"\nUse 'yarn run test:all' to run all tests\nPass a test file pattern from ./test to run\n\n\t$ yarn run test test/pack.test.ts\" && ts-mocha -t 120000 -r esm -p tsconfig.testing.json",
"test:all": "ts-mocha -t 120000 -r esm -p tsconfig.testing.json './test/**/*.test.ts'",
"make:docs": "node scripts/make-docs.mjs"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.1",
"@microsoft/api-documenter": "^7.13.53",
"@microsoft/api-extractor": "^7.18.10",
"@microsoft/tsdoc": "^0.13.2",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@swc/core": "^1.2.133",
"@types/chai": "^4.2.22",
"@types/deep-equal": "^1.0.1",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/expect": "^24.3.0",
"@types/form-data": "^2.5.0",
"@types/fs-extra": "^9.0.13",
"@types/lodash.isequal": "^4.5.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/node-fetch": "^3",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"chai": "^4.3.4",
"deep-equal-in-any-order": "^1.1.15",
"eslint": "^8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-inclusive-language": "^2.1.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"esm": "^3.2.25",
"ethers": "^5.5.2",
"hardhat": "^2.7.1",
"merkletreejs": "^0.2.24",
"mocha": "^9.1.3",
"node-fetch": "^2.6.5",
"prettier": "^2.4.1",
"ts-enum-util": "^4.0.2",
"ts-mocha": "^9.0.0",
"tsup": "^5.11.11",
"typescript": "^4.4.3"
},
"peerDependencies": {
"ethers": "^5"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"@ethersproject/units": "^5.5.0",
"@thirdweb-dev/contracts": "2.0.1",
"@web-std/file": "^3.0.0",
"cross-fetch": "^3.1.5",
"deep-equal": "^2.0.5",
"eventemitter2": "^6.4.5",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"keccak256": "^1.0.6",
"nanoid": "^3.1.31",
"tiny-invariant": "^1.2.0",
"uuid": "^8.3.2",
"zod": "^3.11.6"
},
"resolutions": {
"nanoid": "^3.1.31",
"typescript": "^4.6.2"
},
"bugs": {
"url": "https://github.com/thirdweb-dev/typescript-sdk/issues"
},
"homepage": "https://github.com/thirdweb-dev/typescript-sdk#readme",
"author": "thirdweb",
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
}
}