forked from ark120202/find-steam-app
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.35 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
53
54
{
"name": "@moddota/find-steam-app",
"version": "1.1.0",
"description": "Find location of an installed Steam app",
"keywords": [
"app",
"appid",
"search",
"steam",
"valve"
],
"repository": "https://github.com/ModDota/find-steam-app",
"license": "MIT",
"author": "ark120202",
"files": [
"lib/**/*.{js,ts}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "run-s lint:prettier lint:tslint",
"lint:prettier": "prettier --check **/*.{ts,md,yml,json}",
"fix:prettier": "prettier --write **/*.{ts,md,yml,json}",
"lint:tslint": "eslint . --ext .ts",
"prepublishOnly": "npm run build"
},
"prettier": {
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"p-filter": "^2.1.0",
"tslib": "^1.9.3",
"vdf-extra": "^2.2.2"
},
"devDependencies": {
"@ark120202/tslint-config": "^4.0.1",
"@ark120202/typescript-config": "^2.0.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"typescript": "^3.4.3"
}
}