-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 KB
/
package.json
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
41
42
43
44
45
{
"name": "mediakit-mono",
"description": "Workspace for MediaKit",
"version": "0.0.0",
"scripts": {
"build": "turbo run build --filter=./packages/**/*",
"dev": "turbo run dev --parallel --include-dependencies --no-deps",
"clean": "turbo run clean --parallel && rimraf node_modules pnpm-lock.yaml && pnpm install",
"lint": "turbo run lint",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"format": "prettier --write \"**.*.{ts,tsx,md}\"",
"ts:check": "torbo run ts:check --continue",
"dev:packages": "turbo run dev --filter=./packages/**/*"
},
"type": "module",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-promise": "^7.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.19.1",
"sort-package-json": "^2.10.0",
"tslib": "^2.6.3",
"turbo": "2.0.9",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"packageManager": "pnpm@9.6.0"
}