-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "remark-preset-prettier",
"version": "2.0.1",
"type": "module",
"description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
"repository": "git+https://@github.com/un-ts/remark-preset-prettier.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=14.21.3"
},
"main": "lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:ts": "tsc --noEmit",
"prelint": "yarn build",
"prepare": "patch-package && simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"typecov": "type-coverage"
},
"peerDependencies": {
"prettier": ">=1.0.0"
},
"devDependencies": {
"@1stg/lib-config": "^10.3.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^18.19.63",
"@types/prettier": "^2.7.3",
"patch-package": "^6.5.1",
"type-coverage": "^2.29.1",
"typescript": "^4.9.5",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
"remark-preset-prettier": "link:."
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignoreFiles": [
"lib"
],
"showRelativePath": true,
"strict": true,
"update": true
}
}