-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.18 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
{
"name": "@teichai/extractify",
"version": "0.1.0",
"type": "module",
"description": "AI-powered website data extraction.",
"author": "TeichAI",
"license": "Extractify-NonCommercial",
"repository": {
"type": "git",
"url": "https://github.com/TeichAI/extractify.git"
},
"homepage": "https://teichai.com",
"bugs": {
"url": "https://github.com/TeichAI/extractify/issues"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"lint": "eslint . --max-warnings=0"
},
"dependencies": {
"ajv": "^8.12.0",
"fast-xml-parser": "^4.4.1",
"jsdom": "^24.0.0",
"turndown": "^7.1.2"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.30",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "^8.57.0",
"typescript": "^5.4.4",
"vitest": "^1.5.1"
}
}