-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"version": "0.0.0",
"name": "@dcl/schemas",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "mocha",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"check-api": "npm run build && api-extractor run --typescript-compiler-folder ./node_modules/typescript",
"refresh-api": "npm run build && api-extractor run --local --verbose --diagnostics --typescript-compiler-folder ./node_modules/typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/schemas.git"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"devDependencies": {
"@dcl/eslint-config": "^1.1.1",
"@microsoft/api-extractor": "^7.34.8",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.27",
"@types/sinon": "^10.0.14",
"expect": "^29.5.0",
"mocha": "^10.2.0",
"sinon": "^15.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"ajv-keywords": "^5.1.0",
"mitt": "^3.0.1"
},
"files": [
"dist"
]
}