-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.23 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
{
"name": "@ghostpaw/questlog",
"version": "0.5.1",
"description": "Unified task and calendar model for Node.js — SQLite, zero dependencies, with a built-in LLM tool facade",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "node --experimental-strip-types --test --test-reporter=dot 'src/**/*.test.ts'",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"check": "biome check && tsc --noEmit",
"clean": "rm -rf dist",
"demo:build": "node scripts/build_demo.mjs",
"demo:watch": "node scripts/build_demo.mjs --watch",
"demo:serve": "npm run demo:build && node scripts/serve_demo.mjs",
"prepublishOnly": "npm run check && npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"quest",
"task",
"todo",
"calendar",
"sqlite",
"rpg",
"productivity",
"llm",
"ai",
"agent",
"tools",
"rrule",
"recurrence",
"typescript",
"zero-dependencies"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GhostPawJS/questlog.git"
},
"author": {
"name": "Anonyfox",
"email": "max@anonyfox.com",
"url": "https://anonyfox.com"
},
"homepage": "https://github.com/GhostPawJS/questlog",
"bugs": {
"url": "https://github.com/GhostPawJS/questlog/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Anonyfox"
},
"volta": {
"node": "24.14.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"esbuild": "^0.27.4",
"preact": "^10.29.0",
"sql.js-fts5": "^1.4.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3"
}
}