-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 KB
/
package.json
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
{
"name": "@kasisoft/remark-svelte-auto-import",
"version": "0.2.6",
"description": "Automatically imports svelte components used within a markdown file processed with MDSVEX/remark",
"main": "lib/bundle.esm.js",
"types": "lib/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.15.0"
},
"files": [
"lib/bundle.esm.js",
"lib/index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "mkdir -p lib && cp -f src/main/index.d.ts lib/index.d.ts",
"prepack": "rollup -c",
"pack": "pnpm pack",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:kasisoft/remark-svelte-auto-import.git"
},
"bugs": {
"url": "https://github.com/kasisoft/remark-svelte-auto-import/issues"
},
"homepage": "https://github.com/kasisoft/remark-svelte-auto-import",
"keywords": [
"svelte",
"remark",
"mdsvex",
"markdown"
],
"author": "Daniel Kasmeroglu",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.17.10",
"@types/unist": "^3.0.3",
"@vitest/coverage-istanbul": "^2.1.8",
"c8": "^10.1.3",
"coverage-istanbul": "^1.1.2",
"fast-glob": "^3.3.2",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"rollup": "^4.29.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}