-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.81 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
59
60
61
62
63
64
65
66
{
"name": "@sevalla/cli",
"version": "1.10.0",
"description": "Official CLI for the Sevalla cloud platform",
"type": "module",
"bin": {
"sevalla": "./dist/index.js"
},
"files": [
"dist",
"CONTEXT.md"
],
"scripts": {
"build": "tsup",
"dev": "node src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "node --test 'tests/unit/**/*.test.ts'",
"test:coverage": "node --test --experimental-test-coverage 'tests/unit/**/*.test.ts'",
"test:pentest": "node --test 'tests/pentest/**/*.test.ts'",
"test:e2e": "npm run build && node --test 'tests/e2e/tests/*.test.ts'",
"test:e2e:suite": "node --test",
"test:e2e:teardown": "node tests/e2e/teardown.ts",
"build:binary": "V=$(node -p \"require('./package.json').version\") && bun build src/index.ts --compile --define \"__CLI_VERSION__=\\\"$V\\\"\" --outfile dist/sevalla"
},
"engines": {
"node": ">=24"
},
"keywords": [
"sevalla",
"cli",
"cloud",
"hosting",
"deploy"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sevalla-hosting/cli.git"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"open": "^10.1.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.0",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}