-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 KB
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
{
"name": "@runejs/update-server",
"version": "1.4.0",
"description": "RuneJS Game Update Server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc",
"clean": "rimraf lib",
"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",
"start": "ts-node src/main.ts",
"package": "rimraf lib && npm i && npm run build && npm publish --dry-run"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/runejs/update-server.git"
},
"bugs": {
"url": "https://github.com/runejs/update-server/issues"
},
"homepage": "https://github.com/runejs/update-server#readme",
"author": "Katilith",
"license": "GPL-3.0",
"peerDependencies": {
"@runejs/common": "2.0.2-beta.3",
"@runejs/filestore": "0.17.0",
"tslib": ">=2.8.1"
},
"dependencies": {
"crc-32": "^1.2.2",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@runejs/common": "2.0.2-beta.3",
"@runejs/filestore": "0.17.0",
"@types/node": "^22.10.10",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"tslib": "2.8.1"
}
}