-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.63 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.63 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@qgisk/steamresolver",
"version": "3.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"description": "Steam ID Lookup from custom urls and the other way around",
"files": [
"dist"
],
"scripts": {
"build-fast": "rm -rf dist && tsup lib/ lib/helpers/ --format cjs,esm --target node14 --minify",
"build": "pnpm run build-fast -- --dts-resolve",
"prepublishOnly": "npm run build",
"test": "pnpm run build && pnpm run test-only",
"test-only": "ava test/*.test.ts --fail-fast --timeout 60s",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check **/*.ts **/*.md",
"prettier:fix": "prettier --write **/*.ts **/*.md",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QGIsK/steamResolver.git"
},
"keywords": [
"customurl",
"Finder",
"Resolver",
"Steam",
"Steamid",
"Steamcustomurl",
"SteamResolver",
"NodeJS"
],
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@qgisk/prettier-config": "^0.0.1",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/parser": "^5.6.0",
"ava": "^3.15.0",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.0",
"prettier": "^2.0.5",
"standard-version": "^9.3.2",
"sucrase": "^3.20.3",
"tsup": "^5.11.1",
"isomorphic-unfetch": "^3.1.0",
"typescript": "^4.5.3"
},
"prettier": "@qgisk/prettier-config",
"dependencies": {
"xml2js": "^0.4.23"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"sucrase/register"
]
},
"author": {
"name": "Demian <QGisK>",
"email": "devaccdemiann@gmail.com",
"url": "https://demiann.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/QGIsK/steamResolver/issues"
},
"homepage": "https://github.com/QGIsK/steamResolver#readme"
}