-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.53 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.53 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
{
"name": "typed-xlsx-workspace",
"version": "1.0.0",
"private": true,
"description": "Workspace root for typed-xlsx package and documentation",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"format": "vp fmt",
"format:check": "vp fmt --check",
"lint": "vp lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"build": "turbo run build",
"pack:check": "turbo run pack:check",
"check": "turbo run check",
"examples:build": "turbo run build --filter=typed-xlsx-examples",
"benchmark:build": "turbo run build --filter=typed-xlsx-benchmark",
"docs:dev": "turbo run dev --filter=typed-xlsx-docs",
"docs:build": "turbo run build --filter=typed-xlsx-docs",
"docs:generate": "turbo run generate --filter=typed-xlsx-docs",
"docs:twoslash": "turbo run twoslash:verify --filter=typed-xlsx-docs",
"docs:check": "turbo run check --filter=typed-xlsx-docs && turbo run twoslash:verify --filter=typed-xlsx-docs",
"ci": "turbo run check --filter=!typed-xlsx-benchmark && turbo run twoslash:verify --filter=typed-xlsx-docs",
"prepare": "vp config",
"changeset": "changeset",
"release:status": "changeset status --verbose",
"release:version": "changeset version && bun install",
"release:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"turbo": "2.5.8",
"typescript": "6.0.2",
"vite-plus": "0.1.15"
},
"packageManager": "bun@1.3.6"
}