-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.18 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": "find-steam-app",
"version": "1.0.2",
"description": "Find location of an installed Steam app",
"keywords": [
"app",
"appid",
"search",
"steam",
"valve"
],
"repository": "https://github.com/ark120202/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}",
"lint:tslint": "tslint -p .",
"prepublishOnly": "yarn 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",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
}
}