-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.55 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
{
"name": "filevista-monorepo",
"version": "0.2.0",
"private": true,
"description": "FileVista — a browser-only React file viewer for PDF, Office documents, code, images, and media.",
"homepage": "https://coderlambert.github.io/filevista/",
"repository": {
"type": "git",
"url": "git+https://github.com/CoderLambert/filevista.git"
},
"bugs": {
"url": "https://github.com/CoderLambert/filevista/issues"
},
"license": "LGPL-3.0-or-later",
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
},
"scripts": {
"dev": "pnpm --filter @lamberl-lee/file-preview build && pnpm --filter @lamberl-lee/playground dev",
"build": "pnpm --filter @lamberl-lee/file-preview build && pnpm --filter @lamberl-lee/playground build",
"build:lib": "pnpm --filter @lamberl-lee/file-preview build",
"build:playground": "pnpm --filter @lamberl-lee/file-preview build && pnpm --filter @lamberl-lee/playground build",
"start": "pnpm --filter @lamberl-lee/playground start",
"preview": "pnpm run build && pnpm run start",
"lint": "pnpm -r run lint",
"typecheck": "pnpm --filter @lamberl-lee/file-preview build && pnpm -r run typecheck",
"test": "pnpm --filter @lamberl-lee/file-preview test",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build:lib && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"typescript": "^5"
}
}