-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "casc-cdn",
"version": "0.1.1",
"description": "A modern and minimal TypeScript library for downloading and extracting files from Blizzard's CASC (Content Addressable Storage Container) archives via CDN.",
"author": "Bogdan Tretyakov <trbogdan@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/BogdanTretyakov/casc-cdn",
"bugs": {
"url": "https://github.com/BogdanTretyakov/casc-cdn/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BogdanTretyakov/casc-cdn.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch"
},
"devDependencies": {
"@types/lz4": "^0.6.4",
"@types/node": "^24.0.3",
"tsdown": "^0.12.8",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"files": [
"dist"
],
"keywords": [
"warcraft",
"casc",
"blizzard"
],
"dependencies": {
"lz4": "^0.6.4"
}
}