-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "dom-to-semantic-markdown",
"version": "1.3.0",
"description": "DOM to Semantic-Markdown for use in LLMs",
"repository": {
"type": "git",
"url": "https://github.com/romansky/dom-to-semantic-markdown.git"
},
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && npm run build:browser && npm run build:node",
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "rollup -c --bundleConfigAsCjs",
"watch": "tsc -p tsconfig.json --watch",
"test": "jest",
"example": "open examples/browser.html"
},
"author": "Roman Landenband",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"jest": "^29.7.0",
"jsdom": "^24.1.1",
"rimraf": "^5.0.10",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.6.3"
},
"directories": {
"example": "examples",
"test": "tests"
},
"keywords": [
"markdown",
"html",
"llm"
]
}