-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "@stuyk/cross-resource-cache",
"version": "1.0.8",
"description": "add mongodb database saving to cross resource environments for altv",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bugs": {
"url": "https://github.com/stuyk/cross-resource-cache/issues"
},
"homepage": "https://github.com/stuyk/cross-resource-cache#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stuyk/cross-resource-cache.git"
},
"scripts": {
"build": "ts-node --esm scripts/clean.ts && tsc && tsc -m ES6 --outDir lib-es"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"engines": {
"node": ">=16"
},
"type": "module",
"devDependencies": {
"@altv/types-server": "^2.7.6",
"@altv/types-shared": "^1.4.9",
"@types/node": "^20.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@types/sjcl": "^1.0.30",
"mongodb": "^5.6.0",
"sjcl": "^1.0.8"
}
}