-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 805 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 805 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
{
"name": "scormflow-client",
"version": "0.0.0",
"private": true,
"description": "ScormFlow client SDK, player, and React bindings.",
"license": "MIT",
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm -r --filter './packages/*' run build",
"dev": "pnpm -r --parallel --filter './packages/*' run dev",
"typecheck": "pnpm -r --filter './packages/*' run typecheck",
"test": "pnpm -r --filter './packages/*' run test",
"types:generate": "openapi-typescript ../scorm-engine/openapi/openapi.yaml -o packages/types/src/openapi.d.ts"
},
"devDependencies": {
"@types/node": "^20.16.5",
"openapi-typescript": "^7.4.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}