Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
32 lines (32 loc) · 841 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 841 Bytes
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
{
"name": "baryodev-libraries",
"version": "1.0.0",
"private": true,
"description": "Zero-dependency, ultra-lightweight JavaScript utility libraries",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "vitest run",
"test:watch": "vitest",
"bench": "vitest bench",
"lint": "eslint packages/*/src",
"typecheck": "pnpm -r exec tsc --noEmit",
"clean": "pnpm -r exec rm -rf dist",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^20.10.0",
"eslint": "^9.16.0",
"jsdom": "^25.0.0",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.15.0"
}