-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
87 lines (87 loc) · 2.65 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
{
"name": "@nftgo/gotrading",
"version": "1.0.15",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/index.d.ts"
],
"engines": {
"node": ">=16.14.0"
},
"description": "JavaScript SDK for the NFTGo trading aggregator. Let users buy crypto collectibles and other cryptogoods from multi-marketplaces , all on your own site!",
"license": "MIT",
"author": "NFTGo Developers",
"homepage": "https://github.com/NFTGo/GoTrading-js",
"repository": {
"type": "git",
"url": "git+https://github.com/NFTGo/GoTrading-js.git"
},
"bugs": {
"url": "https://github.com/NFTGo/GoTrading-js/issues"
},
"scripts": {
"dev": "rimraf dist types && cross-env NODE_ENV=development webpack --config ./config/webpack/webpack.dev.js",
"build": "tsc -p tsconfig.build.json",
"build:rollup": "rollup -c rollup.config.mjs",
"publish:dev": "npm run build && npm publish --registry=https://npm.nftgo.dev/",
"typedoc": "rimraf docs && typedoc",
"test": "jest",
"release": "standard-version",
"release-major": "standard-version --release-as major",
"release-minor": "standard-version --release-as minor",
"release-patch": "standard-version --release-as patch",
"clean": "gts clean",
"fix": "gts fix"
},
"standard-version": {
"skip": {
"commit": true
}
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@types/jest": "^29.2.4",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "^5.46.1",
"bignumber.js": "^9.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.15.0",
"eslint-plugin-jest": "latest",
"gts": "^3.1.1",
"https-proxy-agent": "^7.0.2",
"husky": "^6.0.0",
"jest": "^29.5.0",
"lint-staged": "^11.2.6",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"types-bn": "^0.0.1",
"typescript": "^5.1.6",
"undici": "^5.22.1",
"web3-core": "^1.8.2",
"web3-utils": "^1.8.2"
},
"dependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"ethers": "^5.6.9",
"install": "^0.13.0",
"limiter": "^2.1.0",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.35.0",
"tslib": "^2.6.0",
"web3": "^1.8.2"
},
"packageManager": "[email protected]"
}