forked from un-ts/prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.3 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
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@unts/prettier",
"version": "0.0.0",
"type": "module",
"description": "Opinionated but Incredible Prettier plugins.",
"repository": "git@github.com:un-ts/prettier.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@7.14.2",
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"clean": "rimraf dist coverage 'packages/*/{lib,*.tsbuildinfo}'",
"codesandbox:install": "yarn",
"dev": "vitest",
"docs:build": "w -e docs -p --publicPath /",
"docs:dev": "w -e docs --disableDotRule --publicPath /",
"format": "tsx scripts/format",
"languages": "tsx scripts/languages",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc --noEmit",
"postversion": "pnpm i --no-frozen-lockfile",
"prepare": "simple-git-hooks && pnpm languages || exit 0",
"release": "changeset publish",
"serve": "sirv dist",
"test": "vitest run --coverage",
"typecov": "type-coverage",
"vercel-build": "pnpm docs:build"
},
"devDependencies": {
"@1stg/app-config": "^7.2.1",
"@1stg/lib-config": "^10.2.1",
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.24.4",
"@pkgr/webpack-mdx": "^2.2.0",
"@types/lodash": "^4.14.187",
"@types/mvdan-sh": "^0.10.0",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/web": "^0.0.72",
"@vitest/coverage-istanbul": "^0.23.1",
"github-markdown-css": "^5.1.0",
"linguist-languages": "^7.21.0",
"lodash": "^4.17.21",
"prettier-plugin-autocorrect": "link:packages/autocorrect",
"prettier-plugin-pkg": "link:packages/pkg",
"prettier-plugin-sh": "link:packages/sh",
"prettier-plugin-sql": "link:packages/sql",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sirv-cli": "^2.0.2",
"size-limit": "^8.0.1",
"size-limit-preset-node-lib": "^0.1.0",
"tsx": "^3.9.0",
"type-coverage": "^2.22.0",
"typescript": "^4.8.2",
"unplugin-auto-import": "^0.11.2",
"vitest": "^0.23.1"
},
"resolutions": {
"prettier": "^2.7.1"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"eslintIgnore": [
"coverage",
"dist",
"packages/**/fixtures",
"packages/**/lib",
"packages/**/CHANGELOG.md",
"packages/*/src/languages.ts",
"/pnpm-lock.yaml",
"!/.github",
"!/.*.js"
],
"pnpm": {
"overrides": {
"prettier": "^2.7.1"
}
},
"renovate": {
"extends": [
"@1stg"
]
},
"size-limit": [
{
"path": "packages/pkg/lib/index.js",
"limit": "460B"
},
{
"path": "packages/sh/lib/index.js",
"limit": "2.4kB"
},
{
"path": "packages/sql/lib/index.js",
"limit": "2.6kB"
}
],
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNested": true,
"ignoreNonNullAssertion": true,
"ignoreFiles": [
"**/*.d.ts"
],
"showRelativePath": true,
"strict": true,
"update": true
}
}