-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.67 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.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
108
{
"name": "codemirror-markdown-tables",
"version": "1.0.0",
"description": "CodeMirror extension that turns Markdown tables into interactive components",
"keywords": [
"codemirror",
"codemirror-extension",
"markdown",
"markdown-tables"
],
"author": {
"name": "Chris Kant",
"url": "https://ckant.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckant/codemirror-markdown-tables.git"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/codemirror-markdown-tables.umd.cjs",
"module": "./dist/codemirror-markdown-tables.js",
"exports": {
".": {
"import": "./dist/codemirror-markdown-tables.js",
"require": "./dist/codemirror-markdown-tables.umd.cjs"
}
},
"types": "./dist/codemirror-markdown-tables.d.ts",
"scripts": {
"dev": "vite --config vite.config.app.ts --host 0.0.0.0",
"build": "vite --config vite.config.app.ts build",
"build:demo": "vite --config vite.config.demo.ts build",
"preview:demo": "vite preview --config vite.config.demo.ts --host 0.0.0.0",
"test": "vitest --config vite.config.app.ts",
"ui": "vitest --config vite.config.app.ts --ui --coverage",
"coverage": "vitest --config vite.config.app.ts --coverage",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"lint": "prettier --check . && eslint .",
"lint:ci": "(trap 'RC=1' ERR; echo 'Running prettier'; npm run prettier; echo 'Running eslint'; npm run eslint; exit $RC)",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"vale": "vale --no-global --no-wrap README.md | sed -E 's/^ //' | sed -E 's/^([0-9])/ README.md:\\1/'"
},
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@mobily/ts-belt": "^3.13.1",
"clsx": "^2.1.1"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/language": "^6.10.4",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.35.0",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"@lezer/markdown": "^1.3.2"
},
"devDependencies": {
"@codemirror/language-data": "^6.3.1",
"@codemirror/search": "^6.5.8",
"@codemirror/theme-one-dark": "^6.1.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.33.0",
"@microsoft/api-extractor": "^7.55.2",
"@sveltejs/vite-plugin-svelte": "^6.1.1",
"@sveltejs/vite-plugin-svelte-inspector": "^5.0.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^25.0.10",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/ui": "^4.0.16",
"camelcase": "^9.0.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^3.11.0",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.1.0",
"prettier": "^3.6.2",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-svelte": "^3.4.0",
"runed": "^0.37.1",
"strong-mock": "^9.0.1",
"svelte": "^5.48.2",
"svelte-check": "^4.3.5",
"svelte-render-scan": "^1.1.0",
"type-fest": "^5.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.53.1",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^7.1.2",
"vite-bundle-analyzer": "^1.3.2",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-externalize-deps": "^0.10.0",
"vite-plugin-singlefile": "^2.3.0",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.16"
}
}