-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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": "@tada-team/tdproto-ts",
"version": "0.6.101",
"description": "Tada messenger protocol for use in JS/TS projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"check-types": "tsc",
"build": "babel src -d lib --extensions '.ts' --source-maps",
"lint": "eslint ./src",
"fix": "eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tada-team/tdproto-ts.git"
},
"keywords": [
"Tada",
"protocol",
"proto",
"TypeScript"
],
"author": "tada.team [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tada-team/tdproto-ts/issues"
},
"homepage": "https://github.com/tada-team/tdproto-ts#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"typescript": "^4.2.3"
},
"files": [
"lib/**/*"
],
"dependencies": {
"core-js": "^3.10.0"
}
}