-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1006 Bytes
/
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
{
"name": "steam-authentication",
"version": "1.0.5",
"description": "Steam authentication package that features robust verification, zero dependencies, and is built on WebAPI fetch.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"types": "./dist/esm/index.d.ts"
}
},
"files": [
"dist/cjs",
"dist/esm"
],
"scripts": {
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
"build:esm": "tsc --outDir dist/esm --module esnext && sh esmfix.sh",
"build": "npm run build:cjs && npm run build:esm"
},
"author": "herenickname",
"license": "MIT",
"dependencies": {},
"devDependencies": {},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/herenickname/steam-authentication.git"
},
"keywords": [
"steam",
"authentication",
"steam-auth",
"webapi",
"typescript"
]
}