generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.27 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
{
"name": "preversion",
"version": "0.1.0",
"type": "module",
"description": "A tiny cli helps you to publish alpha/beta versions to npm before releasing the final latest version",
"repository": "git+https://github.com/un-ts/preversion.git",
"author": "JounQin (https://www.1stG.me) <[email protected]>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"bin": "./lib/cli.js",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"prerelease",
"preversion",
"release"
],
"scripts": {
"build": "concurrently -r 'yarn:build:*'",
"build:r": "r -f cjs",
"build:tsc": "tsc -p src",
"dev": "vitest",
"docs:build": "vite build docs --emptyOutDir",
"docs:dev": "vite docs",
"lint": "concurrently -r 'yarn:lint:*'",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"release": "yarn build && yarn changeset publish",
"release:beta": "yarn build && node ./lib/cli",
"serve": "vite preview docs",
"test": "vitest run --coverage",
"typecov": "type-coverage",
"vercel-build": "yarn docs:build",
"version": "changeset version && yarn --no-immutable"
},
"dependencies": {
"@pkgr/core": "^0.1.0",
"commander": "^11.1.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@1stg/app-config": "^10.0.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.4",
"@mdx-js/rollup": "^3.0.0",
"@pkgr/rollup": "^5.0.0",
"@size-limit/preset-small-lib": "^11.0.1",
"@types/mdx": "^2.0.10",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/semver": "^7.5.6",
"@types/web": "^0.0.134",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.1.3",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"github-markdown-css": "^5.5.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"simple-git-hooks": "^2.9.0",
"size-limit": "^11.0.1",
"size-limit-preset-node-lib": "^0.3.0",
"stylelint": "^16.1.0",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.3",
"vite": "^5.0.11",
"vitest": "^1.1.3"
},
"resolutions": {
"prettier": "^3.1.1",
"size-limit-node-esbuild@npm:^0.3.0": "patch:size-limit-node-esbuild@npm%3A0.3.0#~/.yarn/patches/size-limit-node-esbuild-npm-0.3.0-6e195b31b7.patch"
},
"size-limit": [
{
"config": "size-limit.esbuild.js",
"path": "lib/cli.js",
"limit": "22kB"
}
],
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}