-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "summon-ws",
"version": "1.8.0",
"description": "Launch configurable multi-pane Ghostty workspaces with one command",
"type": "module",
"packageManager": "pnpm@10.29.2",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"summon": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"pretest:coverage": "pnpm build",
"test:coverage": "vitest run --coverage",
"test:e2e": "SUMMON_E2E=1 vitest run src/e2e",
"test:release": "vitest run src/release --reporter=default --reporter=json --outputFile.json=.release-results.json",
"release:manifest": "node scripts/release/build-manifest.mjs",
"analyze:release": "node scripts/release/analyze-release.mjs",
"prepublishOnly": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build",
"prepare": "husky"
},
"keywords": [
"ghostty",
"terminal",
"workspace",
"splits",
"applescript",
"developer-tools",
"cli",
"macos"
],
"author": "juan294",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/juan294/summon.git"
},
"homepage": "https://github.com/juan294/summon#readme",
"bugs": {
"url": "https://github.com/juan294/summon/issues"
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"os": [
"darwin"
],
"engines": {
"node": ">=20.19"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"brace-expansion": ">=5.0.7",
"esbuild": ">=0.28.1"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "8.1.5",
"vitest": "^4.1.9"
}
}