-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"name": "typeful-api",
"version": "0.0.1",
"private": true,
"description": "End-to-end typesafe OpenAPI-first API framework",
"repository": {
"type": "git",
"url": "https://github.com/dobosmarton/typeful-api.git"
},
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"check-types": "turbo run check-types",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.0",
"prettier": "^3.8.1",
"turbo": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}