-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.48 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.48 KB
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
{
"name": "@unts/prettier",
"version": "0.0.0",
"type": "module",
"description": "Opinionated but Incredible Prettier plugins.",
"repository": "git+https://github.com/un-ts/prettier.git",
"homepage": "https://prettier.1stG.me",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "yarn@4.15.0",
"scripts": {
"build": "run-p 'build:*'",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"clean": "rimraf -g .type-coverage dist coverage '.*cache' 'packages/*/{lib,*.tsbuildinfo}'",
"dev": "vitest",
"docs": "vite",
"docs:build": "vite build",
"format": "tsx scripts/format",
"languages": "tsx scripts/languages",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate && yarn languages || exit 0",
"release": "changeset publish",
"serve": "sirv dist",
"test": "vitest run",
"typecov": "type-coverage",
"version": "changeset version && yarn --no-immutable"
},
"devDependencies": {
"@1stg/browserslist-config": "^2.1.4",
"@1stg/common-config": "^15.0.0",
"@1stg/postcss-config": "^6.2.0",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^21.0.2",
"@mdx-js/rollup": "^3.1.1",
"@pkgr/rollup": "^7.1.0",
"@shikijs/rehype": "^4.1.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^24.12.4",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/serialize-javascript": "^5.0.4",
"@types/web": "^0.0.349",
"@vitejs/plugin-react-swc": "^4.3.1",
"@vitest/coverage-istanbul": "^4.1.7",
"@vitest/eslint-plugin": "^1.6.18",
"clean-pkg-json": "^1.4.2",
"eslint": "^10.4.1",
"eslint-plugin-tsdoc": "^0.5.2",
"github-markdown-css": "^5.9.0",
"linguist-languages": "^9.3.2",
"nano-staged": "^1.0.2",
"npm-run-all2": "^9.0.1",
"prettier": "^3.8.3",
"prettier-plugin-autocorrect": "workspace:*",
"prettier-plugin-pkg": "workspace:*",
"prettier-plugin-sh": "workspace:*",
"prettier-plugin-sql": "workspace:*",
"prettier-plugin-toml": "workspace:*",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.16.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"rimraf": "^6.1.3",
"serialize-javascript": "^7.0.5",
"simple-git-hooks": "^2.13.1",
"sirv-cli": "^3.0.1",
"size-limit": "^12.1.0",
"size-limit-preset-node-lib": "^0.4.0",
"tsx": "^4.22.3",
"type-coverage": "^2.29.7",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"prettier": "^3.8.3",
"prettier-plugin-autocorrect": "workspace:*",
"prettier-plugin-pkg": "workspace:*",
"prettier-plugin-sh": "workspace:*",
"prettier-plugin-sql": "workspace:*",
"prettier-plugin-toml": "workspace:*"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"markuplint": {
"extends": "@1stg/markuplint-config"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"ignoreFiles": [
"lib/**"
],
"showRelativePath": true,
"strict": true,
"update": true
}
}