-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.09 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"name": "monorepo",
"description": "Monorepo for TC39 Temporal utilities.",
"private": true,
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"lint": "biome check && turbo run lint",
"lint:fix": "biome check --write --unsafe && turbo run lint -- --fix",
"watch": "turbo watch build",
"test": "bun test src/",
"test:cov": "bun test src/ --coverage",
"typedoc": "typedoc",
"ci:version": "changeset version && bun update",
"ci:publish": "for dir in packages/*; do (cd \"$dir\" && bun pm pack --filename package.tgz && bunx npm publish package.tgz --provenance); done && changeset tag"
},
"keywords": [],
"author": "Ian Macalinao <me@ianm.com>",
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@changesets/cli": "^2.30.0",
"@macalinao/biome-config": "^0.2.0",
"turbo": "^2.8.13",
"typedoc": "^0.28.17",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.1",
"engines": {
"node": ">=22",
"bun": ">=1.0.0"
}
}