-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 925 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 925 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
38
39
40
41
{
"name": "insighta-cli",
"version": "0.1.0",
"description": "Globally installable CLI for the Insighta Labs+ platform",
"main": "dist/bin/insighta.js",
"bin": {
"insighta": "dist/bin/insighta.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"lint": "eslint src --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"insighta",
"cli"
],
"author": "",
"license": "ISC",
"type": "module",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.1.0",
"open": "^10.1.0",
"prettier": "^3.8.3"
},
"devDependencies": {
"@fast-check/vitest": "^0.1.5",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.9.0",
"fast-check": "^3.22.0",
"typescript": "^5.5.4",
"vitest": "^2.1.0"
}
}