forked from DinographicPixels/TouchGuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
67
68
69
70
71
72
73
{
"name": "touchguild",
"version": "1.2.4",
"description": "TouchGuild is a NodeJS library for interfacing with Guilded.",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"module": "./dist/lib/index.mjs",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"require": "./dist/lib/index.js",
"import": "./dist/lib/index.mjs"
}
},
"scripts": {
"init": "npm install",
"build": "npm install && node scripts/build && gen-esm-wrapper dist/lib/index.js dist/lib/index.mjs",
"compile": "node scripts/build && gen-esm-wrapper dist/lib/index.js dist/lib/index.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint lib --ext .ts",
"test": "node ./tests/main.js",
"test:docs": "npm i --no-save --ignore-scripts typedoc typedoc-plugin-extras typedoc-plugin-rename-defaults && node scripts/gen-docs.js && npx --yes typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DinographicPixels/TouchGuild.git"
},
"keywords": [
"guilded",
"library",
"guilded-api",
"api"
],
"author": "DinographicPixels",
"contributors": [
"Wade (PakkoGraphic)<https://github.com/PakkoGraphic>",
"Raphaël (raphckrman)<https://github.com/raphckrman>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DinographicPixels/TouchGuild/issues"
},
"homepage": "https://touchguild.com",
"devDependencies": {
"@favware/npm-deprecate": "^1.0.6",
"@types/events": "^3.0.0",
"@types/node": "^18.11.9",
"@types/pako": "^2.0.0",
"@types/sync-fetch": "^0.4.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-newlines": "^1.3.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gen-esm-wrapper": "^1.1.3",
"tslib": "^2.4.1",
"typed-emitter": "^2.1.0",
"typescript": "^4.9.4"
},
"dependencies": {
"guildedapi-types.ts": "0.3.45",
"undici": "^5.14.0",
"ws": "^8.11.0"
},
"engines": {
"node": ">= 16.16.0"
}
}