-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "@orama/plugin-parsedoc",
"version": "3.1.0",
"description": "Orama plugin to populate an index with HTML/Markdown documents",
"keywords": [],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/oramasearch/orama.git"
},
"bugs": {
"url": "https://github.com/oramasearch/orama/issues"
},
"homepage": "https://github.com/oramasearch/orama#readme",
"type": "module",
"sideEffects": false,
"main": "./dist/commonjs.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/commonjs.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "swc --delete-dir-on-start -s -w --extensions .ts,.cts -d dist src",
"build": "swc --delete-dir-on-start --extensions .ts,.cts -d dist src",
"postbuild": "tsc -p . --emitDeclarationOnly && tsc -p tsconfig.cjs.json --emitDeclarationOnly && mv dist/commonjs.js dist/commonjs.cjs && mv dist/commonjs.js.map dist/commonjs.cjs.map",
"test": "c8 -c test/config/c8.json tap test/*.test.ts"
},
"dependencies": {
"@orama/orama": "workspace:*",
"glob": "^8.1.0",
"hast-util-from-html": "^1.0.1",
"hast-util-from-string": "^2.0.0",
"hast-util-to-html": "^8.0.4",
"hast-util-to-string": "^2.0.0",
"rehype": "^12.0.1",
"rehype-document": "^6.1.0",
"rehype-parse": "^8.0.4",
"rehype-preset-minify": "^6.0.0",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
"@types/glob": "^8.0.1",
"@types/hast": "^2.3.4",
"@types/node": "^20.9.0",
"@types/tap": "^15.0.7",
"c8": "^7.12.0",
"tap": "^18.6.1",
"tsx": "^3.12.2",
"typescript": "^5.0.0"
},
"tap": {
"extends": "test/config/tap.yml"
}
}