forked from runejs/filestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.95 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@runejs/filestore",
"version": "1.0.0-beta.12",
"description": "Tools for managing the RuneJS asset file store.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./js5": "./js5/index.js",
"./js5/compression": "./js5/compression/index.js",
"./flat-file-store": "./flat-file-store/index.js",
"./config": "./config/index.js",
"./util": "./util/index.js",
"./encryption": "./encryption/index.js",
"./transcoders": "./transcoders/index.js",
"./indexer": "./indexer.js",
"./unpacker": "./unpacker.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node-dev src/dev.ts",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"unpack": "ts-node-dev src/unpacker.ts",
"unpacker": "ts-node-dev src/unpacker.ts",
"index": "ts-node-dev src/indexer.ts",
"indexer": "ts-node-dev src/indexer.ts",
"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/filestore.git"
},
"keywords": [
"runejs",
"runescape",
"typescript",
"filestore",
"cache",
"js5"
],
"author": "Tynarus",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/runejs/filestore/issues"
},
"homepage": "https://github.com/runejs/filestore#readme",
"peerDependencies": {
"@runejs/common": ">=2.0.0-rc.5",
"graceful-fs": ">=4.2.0",
"tslib": ">=2.3.0",
"typescript": ">=4.4.0"
},
"dependencies": {
"@runejs/common": "^2.0.0-rc.9",
"graceful-fs": "^4.2.8",
"json5": "^2.2.0",
"pngjs": "^6.0.0",
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.1"
},
"devDependencies": {
"@runejs/eslint-config": "^1.0.0",
"@types/graceful-fs": "^4.1.5",
"@types/json5": "^2.2.0",
"@types/node": "^16.10.5",
"@types/pngjs": "^3.4.2",
"@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",
"source-map-support": "^0.5.20",
"ts-node": "^10.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"eslintConfig": {
"extends": [
"@runejs/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}