-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "@buildwithsygma/sygma-sdk",
"description": "Sygma Maintenance",
"main": "index.js",
"private": true,
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/sygmaprotocol/maintenance-utils"
},
"packageManager": "yarn@3.6.1",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > ./dist-cjs/package.json",
"build:types": "tsc -p tsconfig.types.json",
"build:all": "yarn run clean && yarn build:cjs && yarn build:types",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "yarn run lint --fix",
"clean": "rm -rf ./dist ./dist-cjs ./dist-esm ./types"
},
"keywords": [],
"author": "Sygma Protocol Product Team",
"license": "LGPL-3.0-or-later",
"dependencies": {
"axios": "^1.4.0",
"commander": "^11.0.0"
},
"devDependencies": {
"@buildwithsygma/sygma-contracts": "^2.3.0",
"@buildwithsygma/sygma-sdk-core": "^2.1.0",
"dotenv": "^16.3.1",
"ethers": "5",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"resolutions": {
"typescript": "^5.0.4"
}
}