-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.02 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.02 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
54
55
56
57
{
"name": "freestyle-fetch-root",
"version": "1.0.0",
"description": "Root repository of freestylejs fetch",
"private": false,
"author": "danpacho",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/freestylejs/fetch"
},
"type": "module",
"scripts": {
"dev": "turbo run build && turbo run dev",
"build": "pnpm reset:dist && turbo run build --no-cache --force",
"build:fast": "pnpm reset:dist && turbo run build:fast",
"start": "turbo run start",
"test": "vitest --run",
"test:watch": "vitest --watch -u",
"test:coverage": "vitest run --coverage",
"test:ci": "pnpm build && pnpm check && pnpm test:coverage",
"ts:typecheck": "turbo run ts:typecheck",
"ts:perf": "rimraf ts-perf && tsc --noEmit --generateTrace ts-perf",
"lint": "biome lint --write",
"format": "biome format --write",
"check": "biome check --write",
"report": "biome check --reporter=summary",
"reset:dist": "pnpm -r --parallel exec rimraf dist .turbo",
"reset:modules": "pnpm -r --parallel exec rimraf node_modules && rimraf node_modules .turbo",
"reset": "pnpm reset:dist && pnpm reset:modules",
"pkg:init": "pnpm test:ci && changeset",
"pkg:version": "changeset version",
"pkg:publish": "changeset publish",
"pre-commit": "pnpm format"
},
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@biomejs/biome": "latest",
"@changesets/cli": "latest",
"@freestylejs/config": "latest",
"@types/node": "latest",
"@vitest/coverage-v8": "latest",
"husky": "latest",
"lint-staged": "latest",
"msw": "^2.12.3",
"rimraf": "latest",
"tsup": "latest",
"turbo": "latest",
"typescript": "latest",
"vite": "latest",
"vite-tsconfig-paths": "latest",
"vitest": "latest"
},
"engines": {
"node": ">=20.0.0"
}
}