-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "jsx-to-md",
"version": "0.11.5",
"private": false,
"description": "A tool that supports writing Markdown through JSX(一款支持通过 JSX 来编写 Markdown 的工具)",
"main": "./dist/src/lib/index.js",
"scripts": {
"prepare": "husky install",
"lint-code": "npx lint-staged",
"lint-msg": "npx commitlint --edit",
"test": "vitest --ui",
"publish": "rimraf dist && tsc && ts-node-dev ./src/bin/index.tsx run --watch false --jsx classic && npm publish --access=public --registry https://registry.npmjs.org",
"dev": "tsc --watch",
"coverage": "vitest --coverage --watch false",
"docs": "ts-node-dev ./src/bin/index.tsx run --jsx classic",
"translate": "i18n t"
},
"bin": {
"jtm": "./dist/src/bin/index.js"
},
"files": [
"./dist/src",
"./jsx-runtime.ts"
],
"keywords": [
"md",
"markdown",
"jsx"
],
"author": "Eyelly Wu",
"license": "MIT",
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix -f table"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@eyelly/prettier-config": "^1.0.0",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitest/coverage-istanbul": "^0.23.4",
"@vitest/ui": "^0.23.4",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-table": "^7.32.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"i18n-pro": "2.0.0-alpha.1",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"vitest": "^0.23.4"
},
"dependencies": {
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"shelljs": "^0.8.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3"
},
"codeNameMap": {
"en": "",
"zh": "zh-CN"
}
}