-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.09 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
{
"name": "tablemark",
"version": "0.0.0-dev",
"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 <bo@haltcase.dev> (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": "tsdown",
"eslint:check": "eslint src tests",
"format": "oxlint --fix && eslint --fix src tests && prettier --write src tests",
"oxlint:check": "oxlint",
"prepublishOnly": "vitest --run && pnpm build",
"prettier:check": "prettier --check src tests",
"test": "vitest",
"typescript:check": "tsgo"
},
"prettier": "@haltcase/style/prettier",
"dependencies": {
"ansi-regex": "^6.2.2",
"change-case": "^5.4.4",
"string-width": "^8.1.0",
"wordwrapjs": "^5.1.0",
"wrap-ansi": "^9.0.2"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@arethetypeswrong/core": "^0.18.2",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@haltcase/style": "^7.3.1",
"@octokit/types": "^14.1.0",
"@types/node": "^24.3.1",
"@types/wordwrapjs": "^5.1.2",
"@typescript/native-preview": "7.0.0-dev.20250910.1",
"eslint": "^9.35.0",
"eslint-plugin-oxlint": "^1.14.0",
"lefthook": "^1.12.4",
"oxlint": "^1.14.0",
"prettier": "^3.6.2",
"semantic-release": "^25.0.1",
"tsdown": "0.15.0",
"typescript": "^5.9.2",
"vitest": "3.2.4"
},
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20",
"onFail": "error"
}
}
}