-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
58
59
60
61
62
{
"name": "html-textify",
"version": "1.0.2",
"description": "Convert html to plain text",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"format:fix": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"html",
"text",
"strip-tags",
"convert",
"parser",
"html-to-text"
],
"author": "Sam Arjmandi",
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"devDependencies": {
"@jest/types": "^30.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.1.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marjmandi/html-textify.git"
},
"engines": {
"node": ">=20.0.0"
}
}