forked from runejs/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
{
"name": "@runejs/common",
"version": "2.0.0-rc.13",
"description": "Common logging, networking, compression, and other functionality for RuneJS applications.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./buffer": "./buffer/index.js",
"./color": "./color/index.js",
"./compress": "./compress/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": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --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"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/runejs/core.git"
},
"keywords": [
"runejs",
"runescape",
"typescript"
],
"author": "Tynarus",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/runejs/core/issues"
},
"homepage": "https://github.com/runejs/core#readme",
"peerDependencies": {
"tslib": ">=2.3.0",
"typescript": ">=4.4.0"
},
"dependencies": {
"compressjs": "^1.0.3",
"js-yaml": "^3.14.1",
"pino": "^6.13.0",
"pino-pretty": "^4.8.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@runejs/eslint-config": "^1.0.0",
"@types/node": "^14.17.6",
"@types/pino": "^6.3.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"eslintConfig": {
"extends": [
"@runejs/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}