-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "@statewalker/statewalker-shared-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@10.16.1",
"description": "Foundation layer for the statewalker ecosystem: shared primitives, adapters, logger, registry, intents, ids",
"homepage": "https://github.com/statewalker/statewalker-shared",
"author": {
"name": "Mikhail Kotelnikov",
"email": "mikhail.kotelnikov@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/statewalker/statewalker-shared.git"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "biome check --write .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"publish-all": "pnpm run build && pnpm -r publish --access public --no-git-checks",
"changeset": "changeset",
"version-packages": "changeset version",
"release-packages": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/cli": "^2.30.0",
"@types/node": "catalog:",
"tsx": "catalog:",
"turbo": "^2.9.6",
"typescript": "catalog:",
"vitest": "catalog:"
},
"version": ""
}