-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.25 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
{
"name": "@tevinch/markdown-table",
"version": "0.1.1",
"private": true,
"description": "Convert pasted CSV or spreadsheet text to literal Markdown tables, with an optional React component.",
"type": "module",
"main": "./index.mjs",
"types": "./index.d.mts",
"exports": {
".": {
"types": "./index.d.mts",
"import": "./index.mjs",
"default": "./index.mjs"
},
"./react": {
"types": "./react/index.d.ts",
"import": "./react/index.js",
"default": "./react/index.js"
}
},
"files": ["index.mjs", "index.d.mts", "react/index.js", "react/index.d.ts", "README.md", "LICENSE"],
"sideEffects": false,
"engines": { "node": ">=20" },
"peerDependencies": { "react": ">=18" },
"peerDependenciesMeta": { "react": { "optional": true } },
"author": "Tevinch <tevin.chang@live.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tevinch/data-shape-kit.git",
"directory": "javascript/markdown-table"
},
"homepage": "https://github.com/tevinch/data-shape-kit/tree/markdown-table-v0.1.1/javascript/markdown-table",
"bugs": { "url": "https://github.com/tevinch/data-shape-kit/issues" },
"keywords": ["csv", "tsv", "markdown", "table", "react", "clipboard"]
}