-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@dcl/opscli",
"version": "1.0.0",
"description": "base component",
"bin": "dist/bin.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build:watch": "tsc -p tsconfig.json --watch",
"prestart": "make build",
"start": "./dist/bin.js",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/opscli.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/opscli/issues"
},
"prettier": {
"printWidth": 120,
"semi": false
},
"homepage": "https://github.com/decentraland/opscli#readme",
"dependencies": {
"@dcl/crypto": "^3.4.5",
"@dcl/schemas": "^15.1.1",
"@well-known-components/fetch-component": "^3.0.0",
"arg": "^5.0.2",
"dcl-catalyst-client": "^21.7.0",
"eth-crypto": "^2.5.0",
"simple-git": "^3.14.0",
"undici": "^6.19.8"
},
"devDependencies": {
"@dcl/eslint-config": "^2.2.1",
"@microsoft/api-extractor": "^7.17.0",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.45",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}