-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "ow-libs",
"version": "2.5.1",
"description": "Libraries for working with Overwolf API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Anton Kulakov<anton.kulakov@overwolf.com>",
"repository": {
"type": "git",
"url": "https://github.com/antonk777/ow-libs.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint src/**",
"compile": "tsc",
"watch": "tsc --watch"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-overwolf": "0.1.0",
"eslint-config-overwolf-ts": "0.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@overwolf/types": "^3.19.3"
},
"overrides": {
"word-wrap": "@aashutoshrathi/word-wrap"
}
}