-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@markdoc-garden/svelte-renderer",
"version": "1.0.0",
"license": "MIT",
"description": "Render your Markdoc files in Svelte(kit).",
"homepage": "https://github.com/markdoc-garden/svelte-renderer",
"keywords": [
"svelte",
"markdoc",
"markdown",
"preprocessor"
],
"repository": {
"url": "https://github.com/markdoc-garden/svelte-renderer",
"directory": "src/lib",
"type": "git"
},
"bugs": {
"url": "https://github.com/markdoc-garden/svelte-renderer/issues"
},
"packageManager": "pnpm@8.6.3",
"type": "module",
"scripts": {
"app:dev": "vite dev",
"package:dev": "svelte-package --watch",
"app:build": "vite build",
"package:build": "svelte-package",
"package:change": "changeset",
"package:version": "pnpm format && changeset version",
"package:publish": "pnpm package:distribute && changeset publish",
"package:distribute": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"preinstall": "npx only-allow pnpm"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"main": "./dist/index.js",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@markdoc/markdoc": "*",
"svelte": "*",
"yaml": "*"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@markdoc/markdoc": "^0.3.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.4",
"@sveltejs/package": "^2.0.0",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"publint": "^0.1.9",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"yaml": "^2.3.1"
}
}