-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.88 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.88 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
{
"name": "glimpseui",
"version": "0.6.2",
"description": "Native micro-UI for scripts and agents — cross-platform WebView windows with bidirectional JSON communication",
"type": "module",
"main": "src/glimpse.mjs",
"exports": {
".": "./src/glimpse.mjs"
},
"bin": {
"glimpseui": "bin/glimpse.mjs"
},
"scripts": {
"build": "node scripts/build.mjs",
"build:macos": "node scripts/build.mjs darwin",
"build:linux": "node scripts/build.mjs linux",
"build:windows": "node scripts/build.mjs win32",
"postinstall": "node scripts/postinstall.mjs",
"test": "node test/test.mjs && node test/open-links.test.mjs && node test/test-status-item.mjs",
"test:platform": "node test/platform.mjs",
"publish:check": "./scripts/publish.sh --dry-run",
"publish:npm": "./scripts/publish.sh"
},
"files": [
"src/glimpse.swift",
"src/glimpse.mjs",
"src/chromium-backend.mjs",
"src/follow-cursor-support.mjs",
"src/linux/",
"bin/glimpse.mjs",
"native/windows/Glimpse.Windows.csproj",
"native/windows/Program.cs",
"NuGet.config",
"scripts/build.mjs",
"scripts/postinstall.mjs",
"pi-extension/index.ts",
"pi-extension/companion.mjs",
"pi-extension/socket-path.mjs",
"skills/glimpse/SKILL.md",
"README.md",
"CHANGELOG.md"
],
"pi": {
"extensions": [
"./pi-extension/index.ts"
],
"skills": [
"./skills"
]
},
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"macos",
"linux",
"windows",
"webview",
"native",
"ui",
"webkit",
"wkwebview",
"webview2",
"gtk",
"swift",
"gui",
"agent",
"dialog",
"prompt",
"overlay",
"pi-package"
],
"repository": {
"type": "git",
"url": "https://github.com/hazat/glimpse"
},
"author": "hazat",
"license": "MIT"
}