-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 851 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 851 Bytes
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
{
"name": "indx-node-loader",
"version": "1.0.1",
"description": "Node.js TypeScript application for loading and configuring datasets for IndxCloudApi",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"clean": "rm -rf dist"
},
"keywords": [
"indx",
"search",
"cloud",
"loader",
"dataset"
],
"author": "Anders Tangen <anders@indx.co>",
"license": "MIT",
"dependencies": {
"@indxsearch/indx-types": "^1.0.1",
"axios": "^1.6.7",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.1",
"inquirer": "^9.2.15"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.19",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}