-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "@ironfish/multisig-broker",
"version": "0.3.0",
"description": "Broker server and client supporting coordination between Iron Fish multisig accounts",
"repository": "https://github.com/iron-fish/multisig-broker.git",
"author": "Iron Fish <[email protected]> (https://ironfish.network)",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"license": "MPL-2.0",
"homepage": "https://ironfish.network",
"engines": {
"node": ">=18"
},
"files": [
"/build/**/*.js",
"/build/**/*.d.ts",
"/build/**/*.d.ts.map",
"/build/**/*.json"
],
"dependencies": {
"@ironfish/rust-nodejs": "^2.7.0",
"@ironfish/sdk": "^2.8.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"uuid": "8.3.2",
"yup": "0.29.3"
},
"devDependencies": {
"@types/uuid": "^8.0.1",
"@types/yup": "0.29.10",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "8.56.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-prettier": "3.4.0",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"scripts": {
"build": "tsc -b tsconfig.json",
"clean": "rimraf build",
"lint": "yarn build && eslint --ext .ts,.tsx,.js,.jsx src/",
"start": "npx ts-node start.ts"
}
}