-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 4.01 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 4.01 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
{
"name": "pie-qti",
"version": "0.1.0",
"private": true,
"description": "Production-ready QTI 2.x players and transformation tools",
"repository": {
"type": "git",
"url": "https://github.com/pie-framework/pie-qti.git"
},
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"scripts": {
"postinstall": "node scripts/setup-local-players.mjs",
"prepare": "lefthook install",
"build": "turbo build",
"dev": "turbo dev",
"pie-qti": "node tools/cli/bin/run.js",
"dev:demo": "bun scripts/dev-app.ts demo",
"dev:transform": "bun scripts/dev-app.ts transform",
"dev:apps": "turbo dev --filter=@pie-qti/app-demo... --filter=@pie-qti/app-transform...",
"dev:pages": "cd apps/demo && bun run dev",
"build:pages": "bun run build && cd apps/demo && NODE_ENV=production bun run build",
"preview:pages": "cd apps/demo && bun run preview",
"docs": "turbo dev --filter=@pie-qti/app-docs",
"docs:dev": "turbo dev --filter=@pie-qti/app-docs",
"docs:build": "turbo build --filter=@pie-qti/app-docs",
"docs:preview": "turbo preview --filter=@pie-qti/app-docs",
"test": "turbo test",
"test:all": "bun run test && bun run test:e2e",
"test:e2e": "cd apps/demo && bun run test:e2e",
"test:e2e:ui": "cd apps/demo && bun run test:e2e:ui",
"test:a11y": "cd apps/demo && bun run test:a11y",
"lint": "bun run lint:biome && bun run lint:svelte",
"lint:biome": "biome check .",
"lint:svelte": "turbo check",
"lint:all": "bun run lint && bun run check && bun run typecheck && bun run check:package-metadata && bun run check:deps",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"check": "turbo check",
"check:fixed-versioning": "SKIP_NPM_VERSION_SEQUENCE_CHECK=1 node scripts/check-fixed-versioning.mjs",
"check:fixed-versioning:full": "node scripts/check-fixed-versioning.mjs",
"check:package-metadata": "bun ./scripts/check-package-metadata.mjs",
"check:publint": "bun ./scripts/check-publint.mjs",
"check:types-publish": "bun ./scripts/check-attw.mjs",
"check:pack-exports": "bun ./scripts/check-pack-exports.mjs",
"check:pack-smoke": "bun ./scripts/check-pack-smoke.mjs",
"check:deps": "bun ./scripts/check-deps.mjs",
"check:source-exports": "bun ./scripts/check-source-exports.mjs",
"verify:apps:deploy": "bun run docs:build && turbo build --filter=@pie-qti/app-demo --filter=@pie-qti/app-transform",
"verify:publish": "bun run build && bun run verify:publish:quick",
"verify:publish:quick": "bun run check:fixed-versioning && bun run check:package-metadata && bun run check:publint && bun run check:types-publish && bun run check:pack-exports && bun run check:pack-smoke && bun run check:deps && bun run check:source-exports",
"check:npm-auth": "dotenvx run -f .env -- node scripts/check-npm-auth.mjs",
"restore:workspace-ranges": "node scripts/restore-workspace-ranges.mjs",
"pack:local": "bun run build && node scripts/pack-local.mjs",
"changeset": "changeset",
"version": "changeset version",
"release": "dotenvx run -f .env -- node scripts/release.mjs",
"release:with-version": "bun ./scripts/create-temporary-release-changeset.mjs && bun run version && bun run restore:workspace-ranges && bun run check:npm-auth && bun run verify:publish && bun run test && bun run release && bun run restore:workspace-ranges"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.4.8",
"@changesets/cli": "^2.30.0",
"@dotenvx/dotenvx": "^1.56.0",
"@types/bun": "^1.3.11",
"@vitalets/google-translate-api": "^9.2.1",
"lefthook": "^2.1.4",
"publint": "^0.3.17",
"turbo": "^2.8.19",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.11"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"tailwindcss": "^4.2.2"
}
}