-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (61 loc) · 1.54 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
{
"private": true,
"repository": "https://github.com/mdx-js/mdx-analyzer.git",
"workspaces": [
"packages/*"
],
"scripts": {
"generate": "npm --workspace vscode-mdx run generate",
"format": "remark . -qfo && prettier . -w --log-level warn && xo --fix",
"test-types": "tsc --build --clean packages && tsc --build packages",
"test-api": "c8 node --test",
"test": "npm run test-types && npm run format && npm run test-api"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.0.0",
"@mdx-js/node-loader": "^3.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"c8": "^10.0.0",
"prettier": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remark-cli": "^12.0.0",
"remark-frontmatter": "^5.0.0",
"remark-preset-wooorm": "^10.0.0",
"typescript": "^5.0.0",
"xo": "^0.59.0"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"remark-frontmatter",
"remark-preset-wooorm",
[
"remark-lint-maximum-heading-length",
false
],
[
"remark-lint-no-html",
false
]
]
},
"xo": {
"prettier": true,
"rules": {
"max-params": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/naming-convention": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}