-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.55 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
118
119
120
121
122
123
124
125
{
"name": "@polysensus/chaintrap-arenastate",
"type": "module",
"version": "0.0.43",
"description": "chaintrap arena library to derive and model the arena contract state for specific game sessions",
"main": "dist/chaintrap-arenastate.esm.js",
"module": "dist/chaintrap-arenastate.esm.js",
"browser": "dist/chaintrap-arenastate.esm.js",
"files": [
"dist"
],
"directories": {
"lib": "src/lib"
},
"scripts": {
"release": "release-it",
"prepare": "rollup -c",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "prettier --ignore-path .gitignore --ignore-path .prettierignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write --plugin-search-dir=. ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/polysensus/chaintrap-arenastate.git"
},
"keywords": [
"solidity",
"chaintrap",
"arenastate"
],
"author": "[email protected]",
"license": "APACHE-2",
"bugs": {
"url": "https://github.com/polysensus/chaintrap-arenastate/issues"
},
"homepage": "https://github.com/polysensus/chaintrap-arenastate#readme",
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Changes"
},
{}
]
}
}
}
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@release-it/conventional-changelog": "^7.0.0",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@vitest/coverage-c8": "^0.25.3",
"chai-as-promised": "^7.1.1",
"cli-spinners": "^2.7.0",
"deep-equal": "^2.2.1",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"glob": "^8.1.0",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.25",
"mocha": "^10.2.0",
"node-fetch": "^3.3.0",
"ora": "^6.1.2",
"prettier": "^2.8.0",
"release-it": "^16.1.5",
"rollup": "^3.20.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-polyfill-node": "^0.11.0",
"vitest": "^0.29.8"
},
"dependencies": {
"@eth-optimism/sdk": "^2.0.2",
"@msgpack/msgpack": "^2.8.0",
"@openzeppelin/merkle-tree": "^1.0.5",
"@polysensus/blobcodex": "^0.0.10",
"@polysensus/chaintrap-contracts": "^0.3.8",
"@polysensus/diamond-deploy": "file:../diamond-deploy",
"commander": "^9.4.1",
"loglevel": "^1.8.1",
"nft.storage": "^7.0.0"
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"env": {
"es2022": true
},
"parserOptions": {
"requireConfigFile": false,
"ecmaVersion": 2022,
"sourceType": "module",
"babelOptions": {
"plugins": [
"@babel/plugin-syntax-import-assertions"
]
}
}
}
}