-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
34 lines (34 loc) · 872 Bytes
/
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
{
"name": "mongo-import",
"version": "1.0.0",
"type": "module",
"description": "Import items from dataset into MongoDB",
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"apify": "latest",
"mongodb": "latest"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.4.1",
"@apify/tsconfig": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bun-types": "latest",
"eslint": "^8.57.1",
"typescript": "^5.6.3"
},
"scripts": {
"start": "bun src/main.ts",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"author": "It's not you it's me",
"license": "ISC",
"module": "index.ts",
"peerDependencies": {
"typescript": "^5.0.0"
}
}