-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.19 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.19 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
{
"name": "@r4ai/remark-embed",
"version": "0.5.0",
"private": false,
"author": "rai",
"keywords": [
"markdown",
"remark",
"remark-plugin",
"embed",
"oembed",
"link-card"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/r4ai/remark-embed.git"
},
"type": "module",
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src",
"!**/*.test.ts",
"!**/*.spec.ts",
"!**/*.tsbuildinfo",
"!src/test",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./transformers": {
"import": "./dist/transformers/index.js",
"types": "./dist/transformers/index.d.ts"
},
"./transformers/*": {
"import": "./dist/transformers/*/index.js",
"types": "./dist/transformers/*/index.d.ts"
}
},
"scripts": {
"check": "biome check .",
"check:write": "biome check --write .",
"test": "vitest",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"changeset": "changeset",
"changeset:version": "changeset version && bun run .github/scripts/sync-package-version.ts",
"release": "bun run build && bun run jsr publish --dry-run && bun run changeset publish"
},
"dependencies": {
"defu": "^6.1.4",
"hast-util-from-html-isomorphic": "^2.0.0",
"unfurl.js": "^6.4.0",
"unist-util-visit": "^5.0.0",
"valibot": "^1.0.0-beta.14"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@tsconfig/node16": "16.1.8",
"@types/bun": "1.3.10",
"@types/hast": "3.0.4",
"@types/jsdom": "21.1.7",
"@types/mdast": "4.0.4",
"@vitest/coverage-v8": "3.2.4",
"dedent": "1.7.2",
"happy-dom": "18.0.1",
"jsr": "0.13.4",
"lefthook": "1.13.6",
"mdast-util-to-hast": "13.2.1",
"msw": "2.12.11",
"rehype-stringify": "10.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"unified": "11.0.5",
"vitest": "3.2.4"
}
}