-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.15 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.15 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
{
"devDependencies": {
"@instructure/browserslist-config-instui": "^11.2.0",
"@testing-library/react": "^16.3.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260226.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-istanbul": "4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"babel-plugin-react-compiler": "^1.0.0",
"browserslist": "^4.28.1",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"jsdom": "^28.1.0",
"lightningcss": "^1.31.1",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"oxlint-tsgolint": "^0.15.0",
"react-compiler-runtime": "^1.0.0",
"tsdown": "0.21.0-beta.2",
"vite": "8.0.0-beta.15",
"vite-node": "^5.3.0",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"vite": "^8.0.0-beta"
}
}
},
"version": "3.0.2",
"name": "@instructure.ai/shared-configs",
"packageManager": "pnpm@10.30.2",
"private": true,
"type": "module",
"scripts": {
"build": "vite-node ./scripts/build.mts",
"build:root": "vite build",
"dev": "vite-node ./scripts/dev.mts",
"new": "vite-node ./scripts/new.mts",
"lint": "vite-node ./scripts/lint.mts",
"lint:root": "oxfmt --config .oxfmtrc.jsonc && oxlint --type-aware --config .oxlintrc.json --disable-nested-config --fix --fix-suggestions",
"test": "vite-node ./scripts/test.mts",
"test:root": "vitest run --config=vitest.config.mts",
"typecheck": "pnpm -r typecheck",
"preview": "vite-node ./scripts/preview.mts",
"release": "vite-node ./scripts/release.mts",
"update-issues": "vite-node ./scripts/issues.mts",
"workspace": "vite-node ./scripts/info.mts"
},
"exports": {
"./vanilla": "./vite.config.mts",
"./react": "./vite.config.react.mts",
"./esm": "./vite.config.esm.mts",
"./workspace": "./scripts/workspace.mts",
"./types": "./types/index.d.ts",
"./vitest": "./vitest.config.shared.mts",
".": "./types/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/instructure/instructure.ai"
}
}