-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.44 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "sensay-cli",
"version": "1.0.1",
"description": "CLI tool for Sensay API operations",
"main": "dist/src/index.js",
"bin": {
"sensay": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/src/index.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "jest --passWithNoTests",
"generate-sdk": "./scripts/generate-sdk.sh"
},
"keywords": [
"sensay",
"cli",
"api"
],
"author": "Sensay",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"nock": "^13.4.0",
"openapi-fetch": "^0.14.0",
"openapi-typescript": "^7.8.0",
"openapi-typescript-codegen": "^0.29.0",
"swagger-typescript-api": "^13.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@sentry/node": "^9.34.0",
"@types/uuid": "^10.0.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"uuid": "^11.1.0"
}
}