-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@erkoware/foalts-cached-disk",
"version": "0.3.0",
"description": "Cached Disk for FoalTS",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "mocha 'lib/*.spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/erkoware/foalts-cached-disk.git"
},
"keywords": [
"cache",
"foalts",
"file"
],
"author": "l0tze",
"license": "MIT",
"bugs": {
"url": "https://github.com/erkoware/foalts-cached-disk.git"
},
"homepage": "https://github.com/erkoware/foalts-cached-disk.git",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/mocha": "^10.0.1",
"@types/node": ">=18.14.2",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"mocha": "^10.2.0",
"prettier": "2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@foal/core": "^4.0.0",
"@foal/storage": "^4.0.0",
"better-sqlite3": "^11.7.0"
}
}