-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.55 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": "napi-postinstall",
"version": "0.3.4",
"type": "commonjs",
"description": "The `postinstall` script helper for handling native bindings in legacy `npm` versions",
"repository": "git+https://github.com/un-ts/napi-postinstall.git",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"funding": "https://opencollective.com/napi-postinstall",
"license": "MIT",
"packageManager": "yarn@4.9.2",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"bin": "./lib/cli.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./fallback": {
"types": "./lib/fallback.d.ts",
"default": "./lib/fallback.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b src",
"clean": "rimraf -g .type-coverage coverage dist lib '.*cache'",
"dev": "vitest",
"docs": "vite",
"docs:build": "vite build",
"format": "prettier --write .",
"lint": "concurrently -r 'yarn:lint:*'",
"lint:es": "eslint . --cache --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc -b --noEmit",
"prepare": "patch-package && simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "yarn build && clean-pkg-json && changeset publish",
"serve": "vite preview",
"test": "vitest run",
"typecov": "type-coverage",
"vercel-build": "yarn docs:build",
"version": "changeset version && yarn --no-immutable && yarn test -u"
},
"devDependencies": {
"@1stg/browserslist-config": "^2.1.4",
"@1stg/common-config": "^14.3.0",
"@1stg/postcss-config": "^6.1.0",
"@1stg/stylelint-config": "^6.1.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@eslint-react/eslint-plugin": "^1.52.2",
"@mdx-js/rollup": "^3.1.0",
"@shikijs/rehype": "^3.7.0",
"@types/mdx": "^2.0.13",
"@types/node": "^22.16.0",
"@types/pnpapi": "^0.0.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/web": "^0.0.245",
"@unts/patch-package": "^8.1.1",
"@vercel/analytics": "^1.5.0",
"@vitejs/plugin-react-swc": "^3.10.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"clean-pkg-json": "^1.3.0",
"concurrently": "^9.2.0",
"eslint": "^9.30.1",
"eslint-plugin-node-dependencies": "^1.1.2",
"eslint-plugin-react-hooks": "^5.2.0",
"github-markdown-css": "^5.8.1",
"nano-staged": "^0.8.0",
"napi-postinstall": "^0.3.4",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.3",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.4.0",
"stylelint": "^16.21.0",
"tinyexec": "^1.0.1",
"type-coverage": "^2.29.7",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"eslint-plugin-jsdoc": "^50.8.0",
"napi-postinstall": "workspace:*",
"prettier": "^3.6.2"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreFiles": [
"**/*.d.ts"
],
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}