-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.85 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
{
"name": "puzzletide",
"version": "0.2.0",
"description": "Word search generator, crossword generator, and sudoku generator + solver in one local-first CLI — printable PDF puzzle worksheets, themed word banks, verifiable LLM evals, and bundled agent skills.",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/Caravaca-Labs/puzzletide-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Caravaca-Labs/puzzletide-cli.git"
},
"bugs": {
"url": "https://github.com/Caravaca-Labs/puzzletide-cli/issues"
},
"keywords": [
"cli",
"puzzle-generator",
"word-search-generator",
"word-search",
"crossword-generator",
"crossword",
"sudoku-generator",
"sudoku-solver",
"sudoku",
"printable-puzzles",
"worksheets",
"pdf",
"agent-skills",
"pi-package",
"llm-evals",
"mcp",
"mcp-server"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"puzzletide": "./dist/cli.js",
"ptide": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"data",
"skills",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"pi": {
"skills": [
"./skills"
]
},
"engines": {
"node": ">=18.17"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/make-executable.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build:wordbanks": "node scripts/build-wordbanks.mjs"
},
"dependencies": {
"commander": "^12.1.0",
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"fast-check": "^3.23.1",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}