-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "paperize",
"version": "0.1.1",
"description": "Distill unstructured sources into qualified goals via AI. Point it at a folder of notes, research, or markdown — get actionable goals.",
"type": "module",
"bin": {
"paperize": "dist/cli.mjs"
},
"files": [
"dist/"
],
"scripts": {
"build": "node esbuild.config.mjs",
"dev": "node --experimental-strip-types src/cli.jsx",
"test": "node --test src/logic/*.test.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"ai",
"claude",
"goals",
"ideation",
"notes",
"obsidian",
"distill",
"synthesize",
"cli",
"tui"
],
"author": "Yesterday <https://yesterday-ai.de>",
"homepage": "https://github.com/Yesterday-AI/paperize#readme",
"repository": {
"type": "git",
"url": "https://github.com/Yesterday-AI/paperize"
},
"bugs": {
"url": "https://github.com/Yesterday-AI/paperize/issues"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"ink": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^19.0.0"
},
"devDependencies": {
"esbuild": "^0.25.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1"
}
}