-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 4.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@aiou/remark-config",
"version": "0.2.0",
"packageManager": "pnpm@9.3.0",
"license": "MIT",
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/JiangWeixian/remark-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JiangWeixian/remark-config.git"
},
"bugs": {
"url": "https://github.com/JiangWeixian/remark-config/issues",
"email": "jiangweixian1994@gmail.com"
},
"author": {
"name": "JW",
"email": "jiangweixian1994@gmail.com",
"url": "https://twitter.com/jiangweixian"
},
"files": ["dist"],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build:lib": "rollup -c --silent",
"build:dts": "ttsc",
"build": "rimraf dist && run-p build:*",
"dev": "rollup -c -w --silent",
"test": "vitest",
"pretest": "pnpm run build",
"release": "pnpm run build && np --no-cleanup --yolo --no-publish --any-branch",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"prepublishOnly": "publish-police",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"remark-comment-config": "^7.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-lint-blockquote-indentation": "^3.1.2",
"remark-lint-checkbox-character-style": "^4.1.2",
"remark-lint-code-block-style": "^3.1.2",
"remark-lint-hard-break-spaces": "^3.1.2",
"remark-lint-list-item-indent": "^3.1.2",
"remark-lint-list-item-spacing": "^4.1.2",
"remark-lint-maximum-heading-length": "^3.1.2",
"remark-lint-no-duplicate-headings-in-section": "^3.1.2",
"remark-lint-no-empty-url": "^3.1.2",
"remark-lint-no-heading-indent": "^4.1.2",
"remark-lint-no-heading-like-paragraph": "^3.1.2",
"remark-lint-no-literal-urls": "^3.1.2",
"remark-lint-no-missing-blank-lines": "^3.1.2",
"remark-lint-no-multiple-toplevel-headings": "^3.1.2",
"remark-lint-no-shell-dollars": "^3.1.2",
"remark-lint-no-table-indentation": "^5.0.0",
"remark-lint-no-tabs": "^3.1.2",
"remark-lint-ordered-list-marker-style": "^3.1.2",
"remark-lint-rule-style": "^3.1.2",
"remark-lint-spaces-around-number": "^0.1.2",
"remark-lint-spaces-around-word": "^0.1.2",
"remark-lint-table-cell-padding": "^5.0.0",
"remark-lint-table-pipe-alignment": "^4.0.0",
"remark-lint-table-pipes": "^5.0.0",
"remark-lint-unordered-list-marker-style": "^3.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"remark-retext": "^5.0.1",
"retext-contractions": "^5.2.0",
"retext-english": "^4.1.0",
"retext-indefinite-article": "^4.3.0",
"retext-quotes": "^5.2.0",
"retext-repeated-words": "^4.2.0",
"retext-sentence-spacing": "^5.2.0",
"unified": "^10.1.2"
},
"devDependencies": {
"@aiou/eslint-config": "0.11.0",
"@changesets/cli": "2.21.1",
"@rollup/plugin-alias": "4.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@types/node": "20.3.1",
"cz-emoji": "1.3.1",
"esbuild": "^0.17.12",
"eslint": "8.11.0",
"husky": "7.0.4",
"lint-staged": "13.2.2",
"npm-run-all": "^4.1.5",
"publish-police": "^0.1.0",
"remark": "^14.0.3",
"remark-cli": "^11.0.0",
"retext-case-police": "^1.1.7",
"rimraf": "3.0.2",
"rollup": "3.19.1",
"rollup-plugin-condition-exports": "1.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-node-externals": "5.1.2",
"ts-node": "^10.7.0",
"tslib": "2.4.0",
"ttypescript": "1.5.15",
"typescript": "4.9.5",
"typescript-transform-paths": "3.3.1",
"vfile-reporter": "^8.0.0",
"vitest": "0.32.2"
}
}