-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"private": true,
"type": "module",
"description": "Swarm monorepo - Typescript code generation tools and utilities",
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"typecheck": "pnpm -r run typecheck",
"changeset": "changeset",
"changeset:auto": "node .changeset/autogenerate.js",
"changeset:version": "node .changeset/version-packages.js",
"release": "pnpm build && changeset publish",
"validate": "pnpm -r run validate && pnpm knip",
"knip": "knip",
"knip:fix": "knip --fix"
},
"keywords": [
"monorepo",
"wasp",
"development-tools"
],
"author": "Gary McPherson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/genyus/swarm.git"
},
"homepage": "https://github.com/genyus/swarm",
"bugs": {
"url": "https://github.com/genyus/swarm/issues"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"knip": "^5.69.1",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.20.0"
}