-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.26 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
{
"name": "@runejs/common",
"version": "2.0.2-beta.3",
"description": "Common logging, networking, compression, and other miscellaneous functionality for RuneJS.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./buffer": "./buffer/index.js",
"./color": "./color/index.js",
"./compress": "./compress/index.js",
"./crc32": "./crc32/index.js",
"./encrypt": "./encrypt/index.js",
"./fs": "./fs/index.js",
"./logger": "./logger/index.js",
"./net": "./net/index.js",
"./util": "./util/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/test.ts",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write",
"fin": "npm run lint:fix && npm run format:fix",
"copy-documents": "copyfiles package.json README.md .npmignore LICENSE lib",
"package": "rimraf lib && npm i && npm run build && npm run copy-documents && cd lib && npm publish --dry-run",
"publish:next": "npm run package && cd lib && npm publish -tag next",
"publish:beta": "npm run package && cd lib && npm publish -tag beta",
"publish:rc": "npm run package && cd lib && npm publish -tag rc",
"publish:release": "npm run package && cd lib && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/runejs/common.git"
},
"keywords": ["runejs", "runescape", "typescript"],
"author": "Kikorono",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/runejs/common/issues"
},
"homepage": "https://github.com/runejs/common#readme",
"peerDependencies": {
"tslib": ">=2.8.1"
},
"dependencies": {
"compressjs": "^1.0.3",
"js-yaml": "^3.14.1",
"pino": "^6.14.0",
"pino-pretty": "^4.8.0",
"sonic-boom": "^2.6.0",
"tslib": ">=2.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.7",
"@types/pino": "^6.3.12",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}