-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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": "tablemark",
"version": "3.1.0",
"description": "Generate markdown tables from a list of objects or JSON data.",
"keywords": [
"markdown",
"table",
"tables",
"json",
"convert",
"generate",
"ghfm",
"tableify",
"typescript"
],
"homepage": "https://github.com/haltcase/tablemark",
"bugs": "https://github.com/haltcase/tablemark/issues",
"repository": "https://github.com/haltcase/tablemark",
"license": "MIT",
"author": "Bo Lingen <[email protected]> (https://github.com/haltcase)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"changelog": "changelog",
"eslint:check": "eslint src tests",
"format": "eslint --fix src tests && prettier --write src tests",
"prepublishOnly": "pnpm format && pnpm test",
"prettier:check": "prettier --check src tests",
"test": "glob \"**/*.test.ts\" --cmd \"node --import tsx --test\"",
"typescript:check": "tsc --noEmit && echo \"No errors reported by tsc.\""
},
"prettier": "@haltcase/style/prettier",
"dependencies": {
"sentence-case": "^3.0.4",
"split-text-to-chunks": "^1.0.0"
},
"devDependencies": {
"@citycide/changelog": "^2.0.0",
"@haltcase/style": "^6.1.0",
"@types/node": "^20.12.2",
"eslint": "^8.57.0",
"glob": "^10.3.12",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}