-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
89 lines (89 loc) · 2.84 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
{
"name": "@runejs/store",
"version": "1.0.0-beta.1",
"description": "Tools for managing and indexing the asset file store used with RuneJS.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./config": "./config/index.js",
"./db": "./db/index.js",
"./scripts": "./scripts/index.js",
"./util": "./util/index.js",
"./indexer": "./scripts/indexer.js",
"./unpacker": "./scripts/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/scripts/unpacker.ts",
"unpacker": "npm run unpack",
"index": "ts-node-dev src/scripts/indexer.ts",
"indexer": "npm run index",
"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/store.git"
},
"keywords": [
"runejs",
"runescape",
"typescript",
"filestore",
"store",
"cache",
"js5"
],
"author": "Kikorono",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/runejs/store/issues"
},
"homepage": "https://github.com/runejs/store#readme",
"peerDependencies": {
"@runejs/common": "2.0.2-beta.2",
"graceful-fs": ">=4.2.0",
"tslib": ">=2.3.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@runejs/common": "2.0.2-beta.2",
"graceful-fs": "^4.2.0",
"json5": "^2.2.0",
"reflect-metadata": "^0.1.13",
"sqlite": "^4.0.25",
"tslib": "^2.3.1",
"typeorm": "^0.2.44",
"yargs": "^17.3.1"
},
"devDependencies": {
"@runejs/eslint-config": "^1.1.0",
"@types/graceful-fs": "^4.1.5",
"@types/node": "^16.11.26",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"better-sqlite3": "^7.5.0",
"copyfiles": "^2.4.1",
"eslint": "^8.11.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"eslintConfig": {
"extends": [
"@runejs/eslint-config"
],
"parserOptions": {
"project": "./tsconfig.json"
}
}
}