-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.3 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
{
"name": "aesync",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm --filter @growae/aesync run build && pnpm -r --filter='./packages/**' --filter='!@growae/aesync' run build",
"build:core": "pnpm --filter @growae/aesync run build",
"dev": "pnpm -r --filter='./packages/**' run dev",
"test": "vitest",
"bench": "vitest run packages/core/src/__tests__/benchmark.test.ts",
"test:cov": "vitest --coverage",
"check": "biome check --write .",
"check:ci": "biome ci .",
"check:types": "pnpm -r --filter='./packages/**' run check:types",
"docs:dev": "pnpm --filter aesync-docs run dev",
"docs:build": "pnpm --filter aesync-docs run build",
"docs:preview": "pnpm --filter aesync-docs run preview",
"clean": "pnpm -r --filter='./packages/**' run clean",
"preinstall": "npx only-allow pnpm",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.27.0",
"@vitest/coverage-v8": "^3.2.4",
"lint-staged": "^16.4.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched"
},
"engines": {
"node": ">=18.19"
}
}