-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.67 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "remark-transform-blockquote",
"version": "1.2.4",
"description": "customize Markdown blockquote",
"license": "MIT",
"author": {
"email": "oss@vnphanquang.com",
"name": "quang",
"url": "https://github.com/vnphanquang"
},
"homepage": "https://github.com/vnphanquang/remark-transform-blockquote",
"repository": {
"type": "git",
"url": "git+https://github.com/vnphanquang/remark-transform-blockquote.git"
},
"bugs": {
"url": "https://github.com/vnphanquang/remark-transform-blockquote/issues"
},
"keywords": [
"remark",
"unified",
"blockquote",
"alert",
"callout",
"admonitions"
],
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"./meta": {
"types": "./types/index.d.ts",
"import": "./src/meta/index.js"
},
"./presets/github.css": "./src/presets/github/github.css",
"./presets/icons/*.svg": "./src/presets/github/icons/*.svg",
"./presets/comeau.css": "./src/presets/comeau/comeau.css",
"./presets/comeau/*.svg": "./src/presets/github/icons/*.svg"
},
"files": [
"src",
"types",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:es": "eslint .",
"lint:style": "stylelint \"**/*.css\"",
"lint": "run-p lint:*",
"format": "prettier . --check",
"dts": "dts-buddy --write && publint",
"test": "vitest --coverage --browser.headless",
"prepublishOnly": "pnpm dts",
"ci:test": "vitest run unit --coverage",
"ci:version": "changeset version",
"ci:publish": "changeset tag && pnpm publish -r --no-git-checks --access public"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/mdast": "^4.0.4",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/coverage-v8": "^4.1.9",
"@vitest/ui": "^4.1.9",
"@vnphanquang/eslint-config": "^4.2.1",
"dedent": "^1.7.2",
"dts-buddy": "^0.8.2",
"eslint": "^10.6.0",
"eslint-plugin-jsdoc": "^63.0.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.9.1",
"prettier-plugin-embed": "^0.5.1",
"publint": "^0.3.21",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"stylelint": "^17.14.0",
"stylelint-config-clean-order": "^10.0.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"vite": "^8.1.2",
"vitest": "^4.1.9"
},
"dependencies": {
"unist-builder": "^4.0.0",
"unist-util-visit": "^5.1.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.16.0",
"onFail": "download"
},
"packageManager": {
"name": "pnpm",
"version": "^11.9.0",
"onFail": "download"
}
}
}