-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.77 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
{
"name": "lil-libs-monorepo",
"private": true,
"description": "Monorepo for @jossmac/lil-libs and its documentation.",
"license": "MIT",
"author": "Joss Mackison",
"homepage": "https://jossmac.github.io/lil-libs/",
"repository": {
"type": "git",
"url": "https://github.com/jossmac/lil-libs.git"
},
"type": "module",
"scripts": {
"build": "pnpm -r build",
"check": "pnpm check:types && pnpm check:lint && pnpm check:format",
"check:types": "pnpm --filter @jossmac/lil-libs check:types",
"check:lint": "eslint packages/lil-libs --ext .ts",
"check:format": "prettier --check .",
"fix": "pnpm fix:lint && pnpm fix:format",
"fix:lint": "eslint packages/lil-libs --ext .ts --fix",
"fix:format": "prettier --write .",
"test": "pnpm --filter @jossmac/lil-libs test",
"test:watch": "pnpm --filter @jossmac/lil-libs test:watch",
"test:coverage": "pnpm --filter @jossmac/lil-libs test:coverage",
"docs:build": "pnpm --filter @jossmac/lil-libs-docs build",
"docs:dev": "pnpm --filter @jossmac/lil-libs-docs dev",
"docs:preview": "pnpm --filter @jossmac/lil-libs-docs preview",
"release": "node scripts/release.mjs",
"release:patch": "pnpm release patch",
"release:minor": "pnpm release minor",
"release:major": "pnpm release major",
"publish:lib": "pnpm --filter @jossmac/lil-libs publish --access public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^10.2.1",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"tsup": "^8.5.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^3.2.4"
},
"engines": {
"node": "24.x",
"pnpm": "10.33.0"
},
"packageManager": "pnpm@10.33.0"
}