-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 2.26 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
{
"name": "@unts/markuplint",
"version": "0.0.0",
"description": "Incredible markuplint plugins, make markuplint greater.",
"repository": "git+https://github.com/un-ts/markuplint.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "yarn@1.22.19",
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"clean": "rimraf packages/*/{lib,*.tsbuildinfo}",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"test": "vitest run --coverage",
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/lib-config": "^11.0.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.11",
"@vitest/coverage-istanbul": "^0.29.8",
"snapshot-diff": "^0.10.0",
"type-coverage": "^2.25.0",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.15.2",
"vitest": "^0.29.8",
"yarn-deduplicate": "^6.0.1"
},
"resolutions": {
"markuplint": "^3.7.0",
"prettier": "^2.8.7"
},
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"extends": "@1stg",
"rules": {
"regexp/strict": "off"
},
"overrides": [
{
"files": ".github/*.yml",
"rules": {
"unicorn/filename-case": "off"
}
},
{
"files": "**/*.spec.ts",
"rules": {
"sonarjs/no-duplicate-string": "off"
}
}
]
},
"eslintIgnore": [
"coverage",
"lib",
"CHANGELOG.md",
"packages/*/test/fixtures",
"/auto-imports.d.ts",
"!/.github",
"!/.*.js"
],
"prettier": "@1stg/prettier-config",
"remarkConfig": {
"plugins": [
"@1stg/preset"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreCatch": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"strict": true,
"update": true
}
}