-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.83 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
{
"name": "@agntn/ciphers",
"version": "0.1.7",
"description": "Unified educational and puzzle cipher library for agents",
"repository": {
"type": "git",
"url": "https://github.com/agntn/ciphers"
},
"bin": {
"ciphers": "./dist/cli.mjs"
},
"type": "module",
"sideEffects": [
"./dist/cli.mjs"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "obuild",
"dev": "obuild --stub",
"docs": "pnpm --dir docs dev",
"check": "pnpm run format:check && pnpm run lint && pnpm run typecheck",
"lint": "vp lint --tsconfig ./tsconfig.lint.json",
"format": "vp fmt",
"format:check": "vp fmt --check",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.omp.json && tsc --noEmit -p tsconfig.lint.json",
"test": "vp test",
"test:packed": "node test/eval-packed.mjs",
"prepack": "pnpm run build",
"release": "pnpm test && pnpm build && changelogen --release --push"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"citty": "^0.2.2",
"consola": "^3.4.2"
},
"devDependencies": {
"@agntn/ox": "^0.1.0",
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"@oh-my-pi/omptype": "17.2.12",
"@oh-my-pi/pi-coding-agent": "17.2.12",
"@types/node": "latest",
"changelogen": "^0.6.2",
"obuild": "^0.4.36",
"oxfmt": "0.64.0",
"oxlint": "1.79.0",
"oxlint-tsgolint": "7.0.2001",
"tsx": "^4.22.4",
"typebox": "^1.1.39",
"typescript": "^6.0.3",
"vite-plus": "0.3.0"
},
"engines": {
"node": ">=25"
},
"packageManager": "pnpm@10.33.4",
"omp": {
"extensions": [
"./packages/omp/extensions/ciphers.ts"
]
},
"pi": {
"extensions": [
"./packages/pi/extensions/*.ts"
]
}
}