forked from activescott/agentmarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 KB
/
package.json
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
{
"name": "agentmarkdown",
"description": "An accurate, extensible, and fast HTML-to-markdown converter.",
"homepage": "https://github.com/activescott/agentmarkdown",
"version": "0.0.0",
"engines": {
"node": ">=16"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"bin": {
"agentmarkdown": "dist/cjs/cli/agentmarkdown.js"
},
"files": [
"dist/",
"scripts/"
],
"author": {
"name": "Scott Willeke",
"email": "[email protected]",
"url": "https://scott.willeke.com/"
},
"repository": "https://github.com/activescott/agentmarkdown",
"bugs": {
"url": "https://github.com/activescott/agentmarkdown/issues"
},
"license": "MPL-2.0",
"scripts": {
"cm": "git-cz",
"build:cjs": "rm -rfd ./dist/cjs; ./node_modules/.bin/tsc --project tsconfig.cjs.json",
"build:es": "rm -rfd ./dist/es; ./node_modules/.bin/tsc --project tsconfig.es.json",
"build": "rm -rfd ./dist && npm run build:es && npm run build:cjs",
"lint": "./node_modules/.bin/prettier -l \"{,!(node_modules)/**/}*.{ts,tsx,js,jsx,md,yml,json,html}\" && npm run eslint",
"eslint": "./node_modules/.bin/eslint . --ext .ts",
"lint-fix": "npm run eslint --fix && ./node_modules/.bin/prettier --write \"{,!(node_modules)/**/}*.{ts,tsx,js,jsx,md,yml,json,html}\"",
"test": "./node_modules/.bin/jest --coverage",
"dev": "./node_modules/.bin/jest --watch",
"pretest": "npm run lint",
"coverage-publish": "cat ./coverage/lcov.info | coveralls",
"postinstall": "node scripts/postInstall.js",
"clean": "rm -rf node_modules; rm -rf example/node_modules"
},
"devDependencies": {
"@activescott/eslint-config": "^2.3.6",
"@types/jest": "^29.5.6",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.8.0",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"domhandler": "^5.0.3",
"htmlparser2": "^9.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"markdown",
"html",
"mrkdwn",
"markup",
"parser",
"commonmark",
"transform",
"compile",
"stringify"
]
}