-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.38 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": "functype-monorepo",
"private": true,
"type": "module",
"description": "Monorepo for the functype family of TypeScript FP libraries",
"author": "jordan.burke@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jordanburke/functype.git"
},
"homepage": "https://functype.org/",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"format": "turbo run format",
"format:check": "turbo run format:check",
"validate": "pnpm sync:eslint-mirror:test && turbo run validate",
"compile": "turbo run compile",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev",
"clean": "pnpm -r clean && rm -rf .turbo",
"sync:eslint-mirror": "tsx scripts/sync-eslint-mirror.ts",
"sync:eslint-mirror:check": "tsx scripts/sync-eslint-mirror.ts --check",
"sync:eslint-mirror:test": "tsx scripts/sync-eslint-mirror.ts --test",
"check-publish-safety": "tsx scripts/check-publish-safety.ts",
"release": "tsx scripts/release.ts"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621",
"engines": {
"node": ">=22"
},
"devDependencies": {
"tsx": "^4.23.12",
"turbo": "^2.10.10"
}
}