-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.5 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
{
"name": "@apify/storage-local",
"version": "2.3.1",
"description": "Drop in replacement of Apify API with a local SQLite and filesystem implementation. Not all API features are supported.",
"engines": {
"node": ">=14.0.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "dist/index.d.ts",
"keywords": [
"apify",
"sqlite",
"api"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Ondra Urban <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-storage-local-js"
},
"bugs": {
"url": "https://github.com/apify/apify-storage-local-js/issues"
},
"homepage": "https://sdk.apify.com/",
"files": [
"dist"
],
"scripts": {
"build": "tsc -b src",
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
"prepublishOnly": "npm run build",
"clean": "tsc -b src --clean",
"test": "jest",
"lint": "eslint src test --ext js,mjs,ts",
"lint:fix": "eslint src test --ext js,mjs,ts --fix",
"build:watch": "tsc -b src -w"
},
"dependencies": {
"@apify/consts": "^2.15.0",
"@apify/log": "^2.2.18",
"@types/better-sqlite3": "^7.6.4",
"@types/integer": "^4.0.1",
"better-sqlite3": "^8.4.0",
"content-type": "^1.0.5",
"fs-extra": "^11.1.1",
"json5": "^2.2.3",
"mime-types": "^2.1.35",
"ow": "^0.28.2",
"tslib": "^2.5.2"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.3.0",
"@types/content-type": "^1.1.5",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.1.3"
}
}