-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@plainconceptsplatform/loop-task",
"version": "2.9.1",
"description": "Loop engineering toolkit. Run any command on a cadence, in the background, managed from a terminal board. Schedule tests, builds, syncs, or agent prompts.",
"type": "module",
"bin": {
"loop-task": "dist/entry.js"
},
"main": "dist/entry.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json && node -e \"require('fs').copyFileSync('src/entry.js','dist/entry.js'); require('fs').copyFileSync('src/esm-loader.js','dist/esm-loader.js')\"",
"prepublishOnly": "npm run build",
"start": "node dist/entry.js",
"dev": "tsx src/cli.ts",
"dev:watch": "tsx --watch src/cli.ts",
"board": "node dist/entry.js",
"test": "vitest run --exclude '**/background-cli.test.ts'",
"test:all": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --exclude '**/background-cli.test.ts'",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"release:dry": "npm publish --dry-run --access public",
"release": "npm publish --access public",
"visual-evidence": "tsx src/visual-evidence/cli.ts",
"visual-evidence:publish": "tsx src/visual-evidence/publish.ts",
"skills:mark-internal": "node scripts/mark-agent-skills-internal.mjs",
"prepare": "husky"
},
"keywords": [
"cli",
"loop",
"loop-engineering",
"repeat",
"interval",
"schedule",
"timer",
"cron",
"automation",
"automations",
"devops",
"agent",
"ai-agent",
"coding-agent",
"agent-automation",
"claude-code",
"codex",
"opencode",
"background-tasks",
"scheduler"
],
"author": "Plain Concepts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PlainConceptsPlatform/loop-task.git"
},
"homepage": "https://github.com/PlainConceptsPlatform/loop-task",
"bugs": {
"url": "https://github.com/PlainConceptsPlatform/loop-task/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/api-logs": "^0.221.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.221.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.221.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.221.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.221.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.221.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.221.0",
"@opentelemetry/resources": "^2.10.0",
"@opentelemetry/sdk-logs": "^0.221.0",
"@opentelemetry/sdk-metrics": "^2.10.0",
"@opentelemetry/sdk-node": "^0.221.0",
"@opentelemetry/sdk-trace-base": "^2.10.0",
"@opentelemetry/sdk-trace-node": "^2.10.0",
"@opentelemetry/semantic-conventions": "^1.43.0",
"commander": "^13.1.0",
"execa": "^9.6.0",
"ink": "^7.1.0",
"ink-combobox": "^0.2.0",
"ink-scroll-list": "^0.4.1",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"inversify": "^8.1.1",
"inversify-hooks": "^4.0.0",
"js-yaml": "^5.2.2",
"ms": "^2.1.3",
"react": "^19.2.7",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/ms": "^2.1.0",
"@types/node": "^22.15.0",
"@types/react": "^19.2.17",
"@vitest/coverage-v8": "^3.1.0",
"eslint": "^9.25.0",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.30.0",
"vitest": "^3.1.0"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"picocolors": "1.1.0"
}
}
}