-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@flowr/root",
"type": "module",
"version": "5.2.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"engineStrict": true,
"author": "@flowr",
"contributors": [
"Pauline <me@dyn.gay>"
],
"license": "(LicenseRef-OQL-1.2 OR MIT OR Apache-2.0)",
"funding": "https://ko-fi.com/pauliesnug",
"homepage": "https://petal.dyn.gay",
"repository": {
"type": "git",
"url": "https://github.com/pulseflow/petal.git",
"directory": "/"
},
"bugs": "https://github.com/pulseflow/petal/issues",
"keywords": [
"@flowr/root",
"monorepo",
"private",
"utilities",
"petal",
"flowr"
],
"sideEffects": false,
"engines": {
"node": ">=22",
"pnpm": ">=9",
"npm": "pnpm",
"yarn": "pnpm"
},
"scripts": {
"build": "pnpm turbo run build --concurrency=4",
"build:affected": "pnpm turbo run build --filter=...[origin/main] --concurrency=4",
"start": "pnpm turbo run start --concurrency=4",
"start:affected": "pnpm turbo run start --filter=...[origin/main] --concurrency=4",
"docs": "pnpm turbo run docs --concurrency=4",
"docs:affected": "pnpm turbo run docs --filter=...[origin/main] --concurrency=4",
"lint": "eslint --cache . --flag unstable_ts_config",
"lint:fix": "pnpm lint --fix",
"test": "vitest run",
"test:update": "vitest --update",
"meta:release": "bumpp -r",
"turbo": "TURBO_TELEMETRY_DISABLED=1 turbo",
"meta:create": "pnpm turbo gen create-package --args"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@flowr/eslint": "workspace:^",
"@turbo/gen": "^2.3.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.2",
"@vitest/ui": "^3.0.2",
"bumpp": "^9.10.1",
"colorette": "^2.0.20",
"destr": "^2.0.3",
"esbuild": "^0.24.2",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"eslint": "^9.18.0",
"jiti": "^2.4.2",
"jsdom": "^26.0.0",
"jsr": "^0.13.2",
"msw": "^2.7.0",
"pathe": "^2.0.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vite": "^6.0.10",
"vitest": "^3.0.2"
},
"pnpm": {
"patchedDependencies": {
"@types/jsdom": "./packages/patches/@types__jsdom.patch"
},
"onlyBuiltDependencies": [
"@types/jsdom",
"esbuild",
"msw"
]
},
"resolutions": {
"@eslint-community/eslint-utils": "^4.4.1",
"@typescript-eslint/utils": "^8.21.0",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"tsx": "^4.19.2"
}
}