forked from ModDota/find-steam-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@ciberus/find-steam-app",
"version": "4.0.0",
"private": false,
"description": "Find location of an installed Steam app",
"keywords": [
"app",
"appid",
"search",
"steam",
"valve"
],
"repository": {
"type": "git",
"url": "https://github.com/ciberusps/find-steam-app"
},
"license": "MIT",
"author": {
"name": "Ciberusps",
"email": "ciberus.ps@gmail.com",
"url": "https://github.com/Ciberusps"
},
"files": [
"lib/**/*.{js,ts}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:prettier": "prettier --check **/*.{js,jsx,ts,tsx,json,css,scss,md}",
"fix:prettier": "prettier --write **/*.{js,jsx,ts,tsx,json,css,scss,md}",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:locally": "ts-node src/scripts/test.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"execa": "^1.0.0",
"fs-extra": "^10.1.0",
"get-folder-size": "^2.0.1",
"lodash.uniqby": "^4.7.0",
"mock-fs": "^5.1.2",
"p-filter": "^2.1.0",
"vdf-extra": "^2.2.2"
},
"devDependencies": {
"@types/execa": "^0.9.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/lodash.uniqby": "^4.7.7",
"@types/mock-fs": "^4.13.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "4.5"
}
}