generated from well-known-components/base-ts-project
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "@well-known-components/base-component",
"version": "1.0.0",
"description": "base component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"lint:check": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/catalyst-client-examples.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/decentraland/catalyst-client-examples/issues"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"homepage": "https://github.com/decentraland/catalyst-client-examples#readme",
"dependencies": {
"@dcl/catalyst-contracts": "^4.4.1",
"@dcl/crypto": "^3.4.5",
"@dcl/schemas": "^11.9.1",
"@noble/secp256k1": "^2.1.0",
"@well-known-components/env-config-provider": "^1.2.0",
"@well-known-components/fetch-component": "^2.0.2",
"dcl-catalyst-client": "^21.7.0",
"eth-connect": "^6.2.4"
},
"devDependencies": {
"@dcl/eslint-config": "^2.0.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}