-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.3 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
90
91
92
93
94
95
96
{
"name": "runescape-text",
"version": "3.1.1",
"description": "Convert text to a text image with RuneScape chat effects.",
"keywords": [
"cli",
"console",
"image",
"terminal",
"runescape",
"command-line",
"animation",
"text",
"buffer",
"gif",
"text-animation",
"effects",
"osrs",
"rs3"
],
"homepage": "https://github.com/peterthehan/runescape-text",
"bugs": {
"url": "https://github.com/peterthehan/runescape-text/issues",
"email": "me@peterhan.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/peterthehan/runescape-text"
},
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/peterthehan"
},
{
"type": "Patreon",
"url": "https://www.patreon.com/peterthehan"
},
{
"type": "PayPal",
"url": "https://paypal.me/peterthehan"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/peterthehan"
},
{
"type": "Venmo",
"url": "https://venmo.com/peterthehan"
}
],
"license": "MIT",
"author": {
"name": "Peter Han",
"email": "me@peterhan.dev",
"url": "https://peterhan.dev"
},
"main": "./dist/index.js",
"bin": {
"runescape-text": "./dist/cli.js"
},
"files": [
"dist/**"
],
"scripts": {
"build": "rm -rf ./dist && npx tsc && cp -r ./src/assets ./dist",
"lint": "npx eslint --fix .",
"prepublishOnly": "npm run lint && npm run build && npm test",
"start": "node dist/cli.js",
"test": "npx jest --coverage --coverageDirectory='coverage'"
},
"dependencies": {
"canvas": "2.11.1",
"gifenc": "github:mattdesl/gifenc#64842fca317b112a8590f8fef2bf3825da8f6fe3",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=18"
}
}