-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "substackdown",
"version": "1.0.0",
"description": "Markdown-like DSL and CLI for writing, managing, and publishing Substack posts. Round-trips perfectly between .sub files and Substack's ProseMirror JSON.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"substackdown": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "node --test dist/**/*.test.js",
"test:src": "tsx --test src/**/*.test.ts",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=18"
},
"keywords": [
"substack",
"markdown",
"prosemirror",
"dsl",
"cli",
"publishing",
"newsletter",
"round-trip",
"wysiwyg"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/substackdown/substackdown.git"
},
"homepage": "https://github.com/substackdown/substackdown#readme",
"bugs": {
"url": "https://github.com/substackdown/substackdown/issues"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"@types/node": "^22.0.0"
}
}