-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.24 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
{
"name": "@notmanu/annotate",
"version": "0.6.0",
"module": "index.ts",
"type": "module",
"main": "./dist/index.js",
"bin": {
"annotate": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' ./dist/index.js",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run typecheck && bun run test && bun run build",
"dev:link": "bash scripts/dev-link.sh",
"dev:unlink": "bash scripts/dev-unlink.sh"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"react-devtools-core": "^7.0.1"
},
"peerDependencies": {
"typescript": "^5"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"pdf",
"annotation",
"annotation-tool",
"ai",
"latex",
"typst",
"workflow",
"pdf-generation",
"pdf-processing",
"math",
"grading",
"typesetting",
"document",
"markup",
"typescript"
],
"license": "MIT",
"dependencies": {
"commander": "^14.0.3",
"ink": "^6.7.0",
"pdf-lib": "^1.17.1",
"zod": "^4.3.6"
}
}