-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "svelte-scribe",
"version": "0.1.2",
"description": "A simple and elegant sveltekit - markdoc documentation library.",
"repository": {
"type": "git",
"url": "https://github.com/shepherd1530/svelte-scribe.git"
},
"exports": {
".": "./dist/main.mjs",
"./RenderLayout.svelte": "./dist/RenderLayout.svelte"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "rollup -c",
"lint": "prettier --ignore-path .gitignore . --write && eslint --ignore-path .gitignore .",
"test": "jest"
},
"keywords": [
"svelte",
"markdoc",
"documentation"
],
"author": "Samuel A.",
"license": "MIT",
"dependencies": {
"@markdoc/markdoc": "^0.2.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^27.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.5.0"
},
"peerDependencies": {
"svelte": "^3.x.x"
},
"type": "module"
}