-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "unihtml",
"description": "Unified HTML Parsing Library",
"main": "build/index.umd.js",
"module": "build/index.mjs",
"typings": "build/index.d.ts",
"version": "2.0.8",
"license": "MIT",
"author": "Tobias Strebitzer <tobias.strebitzer@magloft.com>",
"exports": {
".": {
"import": "./build/index.mjs",
"require": "./build/index.umd.js"
}
},
"scripts": {
"clean": "rimraf build",
"build": "vite build",
"watch": "vite build --watch --mode=development",
"serve": "vite",
"prepack": "yarn clean && yarn build",
"lint": "eslint 'src/**/*.ts'"
},
"dependencies": {
"@magloft/unist-util-select": "^4.0.4",
"hast": "^1.0.0",
"hast-util-to-text": "^3.1.2",
"rehype-parse": "^8.0.4",
"rehype-stringify": "^9.0.3",
"unified": "^10.1.2",
"unist-util-is": "^5.2.1",
"unist-util-remove-position": "^4.0.2",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@magloft/devkit-core": "^1.1.4",
"@magloft/eslint-config": "^1.1.4",
"@types/hast": "^2.3.4",
"typescript": "^4.9.3",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.0.2"
},
"publishConfig": {
"access": "public"
}
}