-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.13 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
{
"name": "@unts/eslint",
"version": "0.0.0",
"type": "module",
"description": "Incredible ESLint plugins, make ESLint greater",
"repository": "git+https://github.com/un-ts/eslint.git",
"homepage": "https://eslint-plugins.vercel.app",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"clean": "rimraf coverage dist packages/*/{lib,*.tsbuildinfo}",
"dev": "yarn docs:dev",
"docs:build": "vite build",
"docs:dev": "vite dev",
"docs:preview": "vite serve",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:ts": "tsc -p tsconfig.base.json --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"release": "changeset publish",
"serve": "yarn docs:preview",
"test": "vitest run --coverage",
"typecov": "type-coverage",
"vercel-build": "yarn docs:build"
},
"devDependencies": {
"@1stg/app-config": "^8.0.1",
"@1stg/lib-config": "^11.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@markuplint/rule-textlint": "^3.15.0",
"@mdx-js/rollup": "^2.3.0",
"@textlint/textlint-plugin-markdown": "^13.4.1",
"@textlint/textlint-plugin-text": "^13.3.3",
"@types/eslint": "^8.37.0",
"@types/htmlhint": "^1.1.5",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/web": "^0.0.99",
"@vitejs/plugin-react-swc": "^3.3.1",
"@vitest/coverage-istanbul": "^0.29.8",
"dictionary-en": "^3.2.0",
"github-markdown-css": "^5.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"retext-emoji": "^8.1.0",
"retext-english": "^4.1.0",
"retext-spell": "^5.3.0",
"sass": "^1.61.0",
"textlint": "^13.3.2",
"textlint-rule-max-comma": "^3.0.1",
"textlint-rule-no-zero-width-spaces": "^1.0.1",
"textlint-rule-spellchecker": "^2.2.1",
"type-coverage": "^2.25.0",
"typescript": "^5.0.4",
"unplugin-auto-import": "^0.15.3",
"vite": "^4.2.1",
"vitest": "^0.29.8",
"yarn-deduplicate": "^6.0.2"
},
"commitlint": {
"extends": "@1stg"
},
"eslintConfig": {
"root": true,
"extends": "@1stg",
"rules": {
"react/react-in-jsx-scope": "off"
}
},
"eslintIgnore": [
"coverage",
"dist",
"**/lib",
"**/test/fixtures",
"**/CHANGELOG.md",
"/auto-imports.d.ts",
"!/.github",
"!/.*.js"
],
"markuplint": {
"extends": "@1stg/markuplint-config"
},
"prettier": "@1stg/prettier-config",
"remarkConfig": {
"plugins": [
"@1stg/preset"
]
},
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"strict": true,
"update": true
}
}