-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "@insforge/cli",
"version": "0.1.32",
"description": "InsForge CLI - Command line tool for InsForge platform",
"type": "module",
"bin": {
"insforge": "dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepublishOnly": "npm run lint && npm run build",
"test": "vitest run --passWithNoTests",
"test:unit": "vitest run --passWithNoTests",
"test:integration:real": "npm run build && vitest run src/integration/real-project.test.ts"
},
"keywords": [
"insforge",
"cli",
"backend",
"database",
"storage",
"functions"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"dependencies": {
"@clack/prompts": "^0.9.1",
"@insforge/shared-schemas": "^1.1.44",
"archiver": "^7.0.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"open": "^10.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^7.0.0",
"@types/node": "^22.13.4",
"eslint": "^10.0.0",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.0"
}
}