-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 4.39 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 4.39 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
116
{
"name": "@studnicky/substrate",
"version": "9.2.0",
"description": "A subclass-first toolkit of TypeScript primitives — retry, throttle, mutex, scheduler, clock, context, pipeline, logger, errors, json, and more. Every class is a usable primitive and an extension base via protected lifecycle hooks and an explicit FSM.",
"author": "Andrew Studnicky <a.j.studnicky@gmail.com>",
"license": "MIT",
"homepage": "https://studnicky.github.io/substrate/",
"repository": {
"type": "git",
"url": "git+https://github.com/Studnicky/substrate.git"
},
"bugs": {
"url": "https://github.com/Studnicky/substrate/issues"
},
"private": true,
"type": "module",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"scripts": {
"build": "tsc -b",
"changeset": "changeset",
"changeset:status": "changeset status",
"changeset:version": "changeset version",
"clean": "tsc -b --clean",
"config-schema": "node scripts/config-schema.mjs",
"config-schema:check": "node scripts/config-schema.mjs --check",
"diagram:deps": "node scripts/dependency-diagram.mjs",
"diagram:deps:check": "node scripts/dependency-diagram.mjs --check",
"diagram:deps:blast-radius": "node scripts/dependency-diagram.mjs --blast-radius",
"predocs:build": "node scripts/stamp-version.mjs",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"lint": "oxlint packages && eslint . && pnpm run lint:docs",
"lint:docs": "node scripts/check-docs-includes.mjs",
"lint:fix": "oxlint packages --fix && eslint . --fix",
"lint:oxlint": "oxlint packages",
"test:inventory": "node scripts/test-estate-report.mjs",
"stamp-version": "node scripts/stamp-version.mjs",
"stamp-version:check": "node scripts/stamp-version.mjs --check",
"test": "pnpm run test:unit",
"test:unit": "node scripts/test-suite.mjs unit --fail-if-empty",
"test:integration": "node scripts/test-suite.mjs integration --fail-if-empty",
"test:smoke": "node scripts/test-suite.mjs smoke --fail-if-empty",
"test:all": "node scripts/test-suite.mjs all --fail-if-empty",
"test:coverage": "node scripts/test-suite.mjs all --coverage --fail-if-empty",
"test:watch": "node scripts/test-suite.mjs all --watch",
"test:dry-run": "node scripts/test-suite.mjs all --dry-run",
"test:changed": "node scripts/test-suite.mjs changed --base origin/develop",
"typecheck": "tsc -b",
"prepare": "bash scripts/install-hooks.sh",
"prebuild": "bash scripts/install-hooks.sh",
"prelint": "bash scripts/install-hooks.sh",
"pretest": "bash scripts/install-hooks.sh",
"pretypecheck": "bash scripts/install-hooks.sh",
"predev": "bash scripts/install-hooks.sh",
"setup-hooks": "bash scripts/install-hooks.sh",
"worktree:clean": "bash scripts/worktree-clean.sh",
"test:hooks": "for f in .githooks/tests/*.test.sh; do echo \"→ $f\"; bash \"$f\" || exit $?; done"
},
"devDependencies": {
"@braintree/sanitize-url": "^7.1.1",
"@changesets/cli": "^2.31.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@lezer/highlight": "^1.2.3",
"@studnicky/eslint-config": "workspace:*",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^26.1.1",
"cytoscape": "^3.33.1",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-fcose": "^2.2.0",
"dayjs": "^1.11.19",
"eslint": "^10.7.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-perfectionist": "^5.10.0",
"eslint-plugin-regexp": "^3.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"mermaid": "^11.16.0",
"madge": "^8.0.0",
"lint-staged": "^16.1.0",
"oxlint": "^1.74.0",
"sucrase": "^3.35.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vue": "^3.5.39"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"overrides": {
"vite": "^6.4.3",
"esbuild": "^0.25.0",
"fast-uri": "^3.1.4",
"brace-expansion": "^5.0.8"
}
},
"substrate": {
"seo": {
"googleSiteVerification": "",
"bingSiteVerification": "",
"twitterHandle": ""
}
}
}