-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "cf-cleaner",
"version": "0.2.0",
"type": "module",
"description": "Cleanup Confluence HTML via rehype",
"repository": "git+https://github.com/un-ts/cf-cleaner.git",
"author": "JounQin <admin@1stg.me>",
"license": "MIT",
"packageManager": "pnpm@7.33.6",
"engines": {
"node": ">=14.18.0"
},
"bin": {
"cfc": "./lib/cli.js"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./lib/rehype-confluence": "./lib/rehype-confluence.js",
"./lib/rehype-confluence.js": "./lib/rehype-confluence.js"
},
"types": "lib",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -p src",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "vitest run --coverage",
"typecov": "type-coverage"
},
"dependencies": {
"commander": "^9.4.1",
"hast-util-is-element": "^2.1.3",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.5",
"rehype-preset-minify": "^6.0.0",
"rehype-stringify": "^9.0.4",
"unified": "^10.1.2",
"unified-stream": "^2.0.0",
"unist-util-remove": "^3.1.1",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@1stg/lib-config": "^10.3.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@types/node": "^18.19.83",
"@vitest/coverage-istanbul": "^0.34.6",
"type-coverage": "^2.27.0",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.16.7",
"vitest": "^0.34.6"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}