forked from primer/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.96 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.96 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
{
"name": "primer",
"private": true,
"workspaces": [
"packages/rollup-plugin-import-css",
"packages/react",
"packages/mcp",
"packages/*",
"examples/*"
],
"scripts": {
"setup": "./script/setup",
"build": "turbo build --filter='!./examples/*'",
"clean": "npm run clean --workspaces --if-present",
"clean:all": "npm run clean && rimraf node_modules packages/*/node_modules examples/*/node_modules",
"format": "prettier --cache --write '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"format:diff": "prettier --cache --list-different '**/*.{js,css,md,mdx,ts,tsx,yml}'",
"start": "concurrently npm:start:*",
"start:storybook": "npm run start:storybook -w @primer/react",
"build:storybook": "script/build-storybook",
"build:docs": "NODE_OPTIONS=--openssl-legacy-provider script/build-docs",
"build:docs:preview": "NODE_OPTIONS=--openssl-legacy-provider script/build-docs preview",
"build:components.json": "npm run build:components.json -w @primer/react",
"build:hooks.json": "npm run build:hooks.json -w @primer/react",
"lint": "eslint '**/*.{js,ts,tsx,md,mdx}' --max-warnings=0 --cache",
"lint:css": "stylelint --rd -q --cache '**/*.css'",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:fix": "npm run lint -- --fix",
"lint:md": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!.github\" \"!.changeset\" \"!**/node_modules/**\" \"!**/CHANGELOG.md\"",
"test": "vitest",
"test:type-check": "tsc --noEmit",
"test:update": "npm run test -- -u",
"type-check": "tsc --noEmit && turbo type-check",
"release": "npm run build && changeset publish",
"reset": "script/reset",
"size": "size-limit"
},
"author": "GitHub, Inc.",
"license": "MIT",
"engines": {
"node": ">=12",
"npm": ">=7"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.4",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "^2.29.6",
"@eslint-react/eslint-plugin": "^1.52.6",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@github/axe-github": "0.7.0",
"@github/markdownlint-github": "^0.8.0",
"@github/mini-throttle": "2.1.1",
"@github/prettier-config": "0.0.6",
"@mdx-js/react": "1.6.22",
"@playwright/test": "^1.55.0",
"@prettier/sync": "0.5.5",
"@primer/stylelint-config": "13.3.0",
"@size-limit/preset-big-lib": "11.2.0",
"@vitest/browser": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.13",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-clsx": "^0.0.10",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-mdx": "3.6.2",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-primer-react": "^8.2.0",
"eslint-plugin-react": "^7.35.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-ssr-friendly": "1.3.0",
"eslint-plugin-storybook": "^9.1.5",
"eslint-plugin-testing-library": "^7.7.0",
"globals": "^16.2.0",
"markdownlint-cli2": "^0.17.2",
"markdownlint-cli2-formatter-pretty": "^0.0.8",
"prettier": "3.4.2",
"rimraf": "5.0.5",
"size-limit": "11.2.0",
"storybook": "^9.1.8",
"stylelint": "16.20.0",
"turbo": "^2.5.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.50.1"
},
"overrides": {
"nwsapi": "2.2.2"
},
"prettier": "@github/prettier-config",
"size-limit": [
{
"path": "packages/react/dist/browser.esm.js",
"webpack": false,
"running": false
},
{
"path": "packages/react/dist/browser.umd.js",
"webpack": false,
"running": false
}
],
"packageManager": "npm@11.5.2+sha512.aac1241cfc3f41dc38780d64295c6c6b917a41e24288b33519a7b11adfc5a54a5f881c642d7557215b6c70e01e55655ed7ba666300fd0238bc75fb17478afaf3"
}