forked from macalinao/temporal-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 977 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 977 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"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": "turbo run lint",
"watch": "turbo watch build",
"test": "CI=true turbo run test",
"ci:version": "changeset version",
"ci:publish": "pnpm publish -r",
"prepare": "husky"
},
"keywords": [],
"author": "Ian Macalinao <me@ianm.com>",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.28.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"turbo": "^2.5.0",
"typedoc": "^0.28.1",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@9.14.2",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,md,json,yml,yaml,html}": "prettier --write"
}
}