-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.64 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "touchguild",
"version": "1.4.1",
"description": "TouchGuild, 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 && rm -rf dist && tsc -p tsconfig.json && cp -r lib/types dist/lib/types && 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",
"docs:dev": "npm run test:docs && node scripts/update-docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DinographicPixels/TouchGuild.git"
},
"keywords": [
"touchguild",
"guilded",
"library",
"guilded-api",
"api",
"product",
"apps",
"app",
"application",
"build",
"create",
"product",
"interactive",
"content",
"interaction"
],
"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.7",
"@types/events": "^3.0.3",
"@types/node": "^22.5.1",
"@types/pako": "^2.0.3",
"@types/sync-fetch": "^0.4.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^48.2.11",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-class-members": "^1.20.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"gen-esm-wrapper": "^1.1.3",
"pako": "^2.1.0",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typed-emitter": "^2.1.0",
"typescript": "5.5.4",
"zlib-sync": "^0.1.9"
},
"dependencies": {
"guildedapi-types.ts": "0.3.64",
"undici": "^6.19.8",
"ws": "^8.18.0"
},
"engines": {
"node": ">= 16.16.0"
}
}