-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@chainsatlas/atlas-sdk",
"version": "0.1.2",
"description": "Compile web2 code to run on web3 environments.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ChainsAtlas/atlas-sdk.git"
},
"scripts": {
"cm": "cz",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"blockchain",
"web3",
"ethereum",
"evm",
"interoperability"
],
"author": "Marcos Medeiros <marcos.medeiros@chainsatlas.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChainsAtlas/atlas-sdk/issues"
},
"homepage": "https://github.com/ChainsAtlas/atlas-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "9.x",
"globals": "^15.8.0",
"prettier": "3.3.3",
"release": "^6.3.1",
"semantic": "^0.0.1",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}