-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.31 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@flowr/root",
"type": "module",
"version": "5.0.0",
"private": true,
"packageManager": "[email protected]",
"engineStrict": true,
"author": "@flowr",
"contributors": [
"Pauline <[email protected]>"
],
"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": "turbo run build --concurrency=4",
"build:affected": "turbo run build --filter=...[origin/main] --concurrency=4",
"start": "turbo run start --concurrency=4",
"start:affected": "turbo run start --filter=...[origin/main] --concurrency=4",
"docs": "turbo run docs --concurrency=4",
"docs:affected": "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 run release --concurrency=4",
"meta:create": "turbo gen create-package --args"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@flowr/eslint": "workspace:^",
"@turbo/gen": "^2.3.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"bumpp": "^9.9.0",
"colorette": "^2.0.20",
"destr": "^2.0.3",
"esbuild": "^0.24.0",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"eslint": "^9.16.0",
"jiti": "^2.4.1",
"jsdom": "^25.0.1",
"jsr": "^0.13.2",
"msw": "^2.6.8",
"pathe": "^1.1.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"pnpm": {
"patchedDependencies": {
"@types/jsdom": "./packages/patches/@types__jsdom.patch"
}
},
"resolutions": {
"@eslint-community/eslint-utils": "^4.4.1",
"@typescript-eslint/utils": "^8.17.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"tsx": "^4.19.2"
}
}