-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 2.29 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
{
"name": "jsx-readme",
"version": "1.10.0",
"description": "Generate Readme files with a React-like syntax and package.json-aware helpers.",
"main": "./lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"docs": "typedoc && touch docs/.nojekyll && ts-node README.md.tsx",
"lint": "eslint src/**/*.ts src/**/*.tsx examples/**/*.tsx test/**/*.tsx",
"pretest": "npm run build",
"test": "jest && pkg-ok",
"watch": "tsc -w -p tsconfig.build.json"
},
"engines": {
"node": ">=14.4.0"
},
"files": [
"lib"
],
"keywords": [
"Markdown",
"generator",
"JSX",
"MD",
"Readme"
],
"author": "Daniel Bartholomae <daniel@bartholomae.name> (https://startup-cto.net)",
"funding": "https://github.com/sponsors/dbartholomae",
"license": "MIT",
"homepage": "https://dbartholomae.github.io/jsx-readme",
"repository": "git@github.com:dbartholomae/jsx-readme.git",
"bugs": "https://github.com/dbartholomae/jsx-readme/issues",
"directories": {
"lib": "lib",
"doc": "docs",
"example": "examples"
},
"dependencies": {
"@octokit/core": "^5.0.0",
"jsx-md": "^4.0.1",
"parse-link-header": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.2",
"@swc/core": "^1.3.59",
"@swc-node/register": "^1.6.5",
"@types/jest": "^29.5.1",
"@types/mock-fs": "^4.13.1",
"@types/parse-link-header": "^2.0.1",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^14.0.0",
"mock-fs": "^5.2.0",
"pkg-ok": "^3.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"semantic-release": "^22.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"typedoc": "^0.25.0",
"typescript": "^5.0.4"
}
}