@schols/pause 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +751 -0
  2. package/package.json +33 -0
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@schols/pause",
3
+ "version": "1.2.0",
4
+ "description": "Pause — terminal UI for AI inbox, chat, and calendar.",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "pause": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist/index.js"
11
+ ],
12
+ "scripts": {
13
+ "build": "cd ../.. && npx tsc && node esbuild.renderer.mjs --tui-only --minify",
14
+ "start": "node dist/index.js",
15
+ "prepublishOnly": "npm run build"
16
+ },
17
+ "dependencies": {
18
+ "@anthropic-ai/claude-agent-sdk": "^0.2.140"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "^25.5.0",
22
+ "typescript": "^5.9.3"
23
+ },
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
27
+ "license": "ISC",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "https://github.com/chaidhat/browser.git",
31
+ "directory": "packages/tui"
32
+ }
33
+ }