-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1011 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1011 Bytes
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
{
"name": "@sourceacademy/modules-repotools",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Common library for tooling used by the modules repository",
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@types/node": "^24.0.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "4.1.4",
"typescript": "^6.0.2",
"vitest": "4.1.4",
"vitest-browser-react": "^2.1.0"
},
"dependencies": {
"@vitest/browser-playwright": "4.1.4",
"chalk": "^5.0.1",
"commander": "^14.0.0",
"es-toolkit": "^1.44.0",
"esbuild": "^0.28.0",
"jsonschema": "^1.5.0"
},
"peerDependencies": {
"@vitejs/plugin-react": "*",
"vitest-browser-react": "*"
},
"exports": {
"./testing": "./dist/testing/index.js",
"./*": "./dist/*.js"
},
"scripts": {
"build": "tsc --project ./tsconfig.prod.json",
"postinstall": "yarn build",
"tsc": "tsc --project ./tsconfig.json",
"test": "vitest run"
}
}