forked from ariakit/ariakit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.8 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
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"start": "pnpm -F website start",
"dev-package-json": "node scripts/build/package-json-dev.js",
"dev": "conc -r 'pnpm:dev-package-json' 'pnpm -F website run dev'",
"dev-lite": "cross-env DISABLE_SHIKI=true pnpm run dev",
"dev-app": "ariakit dev",
"dev-app-lite": "cross-env DISABLE_SYNTAX_HIGHLIGHTING=true pnpm run dev-app",
"build-app": "pnpm -F nextjs run build-worker && pnpm -F app run build",
"build-app-lite": "pnpm -F nextjs run build-worker && pnpm -F app run build-lite",
"preview-app": "conc -r 'pnpm -F app run preview' 'pnpm -F nextjs run preview'",
"react18": "ariakit react18",
"test": "vitest",
"bench": "vitest bench --config vitest.bench.config.ts",
"test-react18": "ariakit react18 -- pnpm test --project react",
"test-browser": "pnpm -F app test",
"test-chrome": "pnpm -F app test-chrome",
"test-chrome-headed": "pnpm -F app test-chrome-headed",
"test-firefox": "pnpm -F app test-firefox",
"test-firefox-headed": "pnpm -F app test-firefox-headed",
"test-safari": "pnpm -F app test-safari",
"test-safari-headed": "pnpm -F app test-safari-headed",
"test-ios": "pnpm -F app test-ios",
"test-ios-headed": "pnpm -F app test-ios-headed",
"test-android": "pnpm -F app test-android",
"test-android-headed": "pnpm -F app test-android-headed",
"coverage": "pnpm test --coverage",
"postcoverage": "open-cli coverage/index.html",
"sync-astro-types": "pnpm --fail-if-no-match -F app run sync",
"lint": "pnpm run sync-astro-types && oxlint --disable-nested-config && oxfmt --check",
"lint-fix": "pnpm run sync-astro-types && oxlint --disable-nested-config --fix && oxfmt",
"lint-css": "stylelint '**/*.css' --ignore-path .gitignore",
"wrangler-types": "pnpm -F app run wrangler-types",
"tsc": "pnpm -F app run check && tsc -b",
"tsc-clean": "tsc -b --clean",
"build": "pnpm -F \"@ariakit/*\" run build",
"build-website": "pnpm -F website run build",
"build-website-lite": "cross-env DISABLE_SHIKI=true pnpm run build-website",
"clean": "pnpm -r run --if-present clean",
"docs": "pnpm -F './packages/*' run --if-present docs",
"changeset": "changeset",
"version": "changeset version && pnpm install --lockfile-only --ignore-scripts",
"publish": "pnpm run build && changeset publish"
},
"devDependencies": {
"@ariakit/scripts": "workspace:*",
"@ariakit/test": "workspace:*",
"@changesets/apply-release-plan": "8.0.0",
"@changesets/cli": "3.0.1",
"@changesets/types": "7.0.0",
"@testing-library/jest-dom": "7.0.1",
"@types/cross-spawn": "6.0.6",
"@types/fs-extra": "11.0.4",
"@types/node": "24.13.3",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.1",
"@vitest/coverage-v8": "4.1.11",
"chalk": "6.0.0",
"chokidar": "5.0.0",
"concurrently": "10.0.5",
"cross-env": "10.1.0",
"cross-spawn": "7.0.6",
"fs-extra": "11.4.0",
"glob": "13.0.6",
"happy-dom": "20.11.15",
"jsdom": "30.0.1",
"lefthook": "2.1.12",
"open-cli": "9.0.0",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-tsgolint": "7.0.2001",
"pkg-pr-new": "0.0.88",
"react": "19.2.8",
"react-dom": "19.2.8",
"rimraf": "6.1.3",
"solid-js": "1.9.15",
"stylelint": "17.14.1",
"stylelint-config-standard": "40.0.0",
"tsup": "8.5.1",
"typescript": "npm:@typescript/typescript6@6.0.2",
"typescript-7": "npm:typescript@7.0.2",
"vite": "8.2.2",
"vite-plugin-solid": "2.11.14",
"vitest": "4.1.11",
"vitest-fail-on-console": "0.10.1"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.18.0",
"onFail": "download"
}
},
"packageManager": "pnpm@11.25.0"
}