-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.85 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
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
{
"name": "dx",
"version": "0.12.0",
"private": true,
"description": "Monorepo for JavaScript and TypeScript dx libraries.",
"homepage": "https://github.com/Rel1cx/dx",
"bugs": {
"url": "https://github.com/Rel1cx/dx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rel1cx/dx.git"
},
"license": "MIT",
"author": "Rel1cx<let@ik.me>",
"type": "module",
"scripts": {
"build": "pnpm run build:pkgs && pnpm run build:packages",
"build:docs": "pnpm -r --stream --filter \"./packages/**\" run build:docs",
"build:packages": "pnpm -r --stream --filter \"./packages/**\" run build",
"build:pkgs": "pnpm -r --stream --filter \"./.pkgs/*\" run build",
"format:check": "dprint check",
"format:write": "dprint fmt",
"lint": "pnpm run lint:publish && pnpm run lint:ts",
"lint:publish": "pnpm m run lint:publish",
"lint:ts": "pnpm m run lint:ts",
"prepare": "pnpm run build",
"test": "pnpm m run test",
"update:version": "tsx ./scripts/update-version.ts"
},
"devDependencies": {
"@effect/platform-node": "^4.0.0-beta.50",
"@local/configs": "workspace:*",
"@local/eff": "workspace:*",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.6.0",
"ansis": "^4.2.0",
"dprint": "^0.54.0",
"effect": "^4.0.0-beta.50",
"publint": "^0.3.18",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sort-package-json": "^3.6.1",
"tinyglobby": "^0.2.16",
"ts-pattern": "^5.9.0",
"tsdown": "^0.21.9",
"tsl": "^1.0.30",
"tsl-dx": "workspace:*",
"tsx": "latest",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=24.0.0"
}
}