-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
94 lines (94 loc) · 2.86 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
{
"name": "@looksrare/sdk-v2",
"version": "1.3.0",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"looksrare"
],
"homepage": "https://looksrare.org/",
"bugs": "https://github.com/LooksRare/sdk-v2/issues",
"repository": {
"type": "git",
"url": "https://github.com/LooksRare/sdk-v2.git"
},
"engines": {
"node": ">= 16.15.1 <= 20.x"
},
"scripts": {
"prebuild": "rm -rf ./src/typechain ./src/artifacts cache dist",
"prepublishOnly": "yarn build",
"dev": "rollup -c --bundleConfigAsCjs -w",
"build:ts": "rollup -c --bundleConfigAsCjs",
"build:sc": "hardhat compile",
"build": "yarn build:sc && yarn build:ts",
"test": "nyc hardhat test",
"doc": "typedoc --plugin typedoc-plugin-markdown --tsconfig tsconfig.build.json",
"lint": "eslint --max-warnings 0 'src/**/*.{js,ts}'",
"format:check": "prettier --check 'src/**/*.{js,ts,json,yaml,yml,md}'",
"format:write": "prettier --write 'src/**/*.{js,ts,json,yaml,yml,md}'",
"release": "release-it --only-version --set-upstream"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,yaml,yml}": "yarn format:write"
},
"peerDependencies": {
"ethers": "^6.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@looksrare/contracts-exchange-v1": "^1.2.0",
"@looksrare/contracts-exchange-v2": "^0.1.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.6.2",
"hardhat": "^2.16.1",
"hardhat-abi-exporter": "^2.9.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.1.3",
"release-it": "^15.7.0",
"rollup": "^3.18.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.4.0",
"solhint": "^3.4.1",
"solmate": "^6.6.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^4.7.3"
},
"dependencies": {
"merkletreejs": "^0.3.9"
}
}