-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.84 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ex-flow",
"version": "1.1.0",
"description": "Dependency-graph execution planner using Kahn's Algorithm with priority-aware batching",
"keywords": [
"batch-scheduler",
"critical-path",
"cycle-detection",
"dag",
"dependency-graph",
"dependency-resolver",
"execution-plan",
"fairness",
"job-scheduler",
"kahn-algorithm",
"observability",
"orchestrator",
"priority-scheduling",
"react",
"react-hooks",
"resource-aware",
"scheduler",
"task-scheduler",
"throughput-scheduler",
"topological-sort",
"typescript",
"workflow"
],
"homepage": "https://github.com/Ink01101011/ex-flow#readme",
"bugs": {
"url": "https://github.com/Ink01101011/ex-flow/issues"
},
"license": "MIT",
"author": "Ink01101011",
"repository": {
"type": "git",
"url": "git+https://github.com/Ink01101011/ex-flow.git"
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.cjs",
"default": "./dist/react/index.mjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "tsx --test src/**/*.test.ts",
"dev": "tsx src/playground.ts",
"build": "tsup --config tsup.config.ts",
"minify": "tsup --config tsup.config.ts --minify",
"bench": "tsx scripts/benchmark.ts",
"clean": "rm -rf dist",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"prepare": "husky",
"ci": "pnpm run format:check && pnpm run lint && pnpm run test && pnpm run build",
"prepublish:check": "pnpm run clean && pnpm run ci && npm pack --dry-run",
"prepublishOnly": "pnpm run prepublish:check && pnpm run minify",
"start": "node dist/index.cjs"
},
"dependencies": {
"exsorted": "^1.1.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"oxfmt": "^0.45.0",
"oxlint": "^1.19.0",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"peerDependencies": {
"exsorted": "^1.1.0",
"react": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"exsorted": {
"optional": true
},
"react": {
"optional": true
}
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.24.0"
}