-
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.17 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.17 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": "@aprovan/patchwork",
"version": "0.1.1",
"description": "Platform for building generative UI experiences",
"type": "module",
"scripts": {
"build": "turbo run build",
"check-types": "turbo run check-types",
"dev": "turbo run dev --parallel",
"lint": "eslint \"**/*.ts?(x)\"",
"lint:fix": "eslint --fix \"**/*.ts?(x)\"",
"format": "prettier --write .",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules packages/*/node_modules packages/*/dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.5.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vitest": "2.1.5"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,scss}": "prettier --write"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}