-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "@runejs/update-server",
"version": "2.0.0-alpha.0",
"description": "RuneJS Game Update Server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"start": "ts-node-dev --max-old-space-size=2048 --respawn src/main.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"package": "rimraf lib && npm i && npm run build && npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/runejs/update-server.git"
},
"bugs": {
"url": "https://github.com/runejs/update-server/issues"
},
"homepage": "https://github.com/runejs/update-server#readme",
"author": "Tynarus",
"license": "GPL-3.0",
"dependencies": {
"@runejs/common": "2.0.0-rc.14",
"@runejs/store": "file:../filestore/lib",
"graceful-fs": "^4.2.8",
"source-map-support": "^0.5.19",
"tslib": "^2.3.1"
},
"devDependencies": {
"@runejs/eslint-config": "^1.0.0",
"@types/node": "^16.10.5",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"eslintConfig": {
"extends": [
"@runejs/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}