-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "setso",
"license": "MIT",
"version": "0.6.0",
"description": "A small library to compile markdown to html in a ordered format.",
"main": "./bundle/bundle.js",
"type": "module",
"bin": {
"setso": "./bundle/bundle.js"
},
"scripts": {
"dev": "pnpm build-fast && node .",
"build": "pnpm prepare && tsc && rollup -c && rimraf build",
"build-fast": "tsc && rollup -c && rimraf build",
"go": "pnpm build && pnpm publish",
"lint": "eslint src --fix",
"check": "pnpm check-code && pnpm check-docs",
"check-code": "prettier src --check",
"check-docs": "prettier src --check",
"format": "pnpm format-code && pnpm format-docs",
"format-code": "prettier src --write",
"format-docs": "prettier docs --write",
"prepare": "pnpm format && pnpm lint"
},
"keywords": [
"ssg",
"minimal",
"micromark"
],
"author": "micziz",
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"fs-extra": "^11.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@chiogen/rollup-plugin-terser": "^7.1.3",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"sass": "^1.60.0",
"typescript": "^4.9.5"
}
}