-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
65
66
{
"name": "msmc",
"version": "5.0.5",
"description": "A bare bones login library for Minecraft based projects to authenticate individuals with a Microsoft account.",
"license": "MIT",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/Hanro50/MSMC.git"
},
"types": "./types/index.d.ts",
"author": "Hanro50 (https://github.com/Hanro50)",
"bugs": {
"url": "https://github.com/Hanro50/MSMC/issues"
},
"homepage": "https://www.hanro50.net.za/msmc/",
"scripts": {
"build": "node build.js",
"dev": "tsc -b ./tsconfig.json -w",
"test:raw": "cd ./tests/raw\nnpm i\nnpm run start",
"test:nwjs": "cd ./tests/nwjs\nnpm i\nnpm run start",
"test:electron": "cd ./tests/electron\nnpm i\nnpm run start",
"test:console": "cd ./tests/console\nnpm i\nnpm run start"
},
"keywords": [
"msmc",
"microsoft",
"oauth2",
"minecraft",
"login",
"mc",
"es6",
"commonjs"
],
"engines": {
"node": ">=14.17.3"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@types/node-fetch": "^2.x",
"typescript": "^5.2.2"
},
"dependencies": {
"node-fetch": "2.x",
"tslib": "^2.6.2"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/hanro50"
}
],
"files": [
"dist",
"types",
"README.md",
"package.json",
"LICENSE"
]
}