-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vinext-progress",
"version": "0.0.0-semantically-released",
"description": "Framework-native navigation progress bar for vinext. Detects route transitions through the router itself — no history monkey-patching, no stuck bars, ~2 kB gzipped, accessible by default.",
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/vinext-progress.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"NOTICE"
],
"workspaces": [
"e2e/fixture"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"cleanup": "bun wb lint --fix --format",
"format": "bun wb lint --format",
"lint": "bun wb lint",
"lint-fix": "bun wb lint --fix",
"prepare": "(bun lefthook install || true) && (test ! -f .lefthook/normalize-bun-lockfile.sh || bash .lefthook/normalize-bun-lockfile.sh)",
"test": "bun wb test",
"test/ci": "bun wb test-on-ci",
"test/ci-setup": "playwright install --with-deps chromium",
"typecheck": "bun wb typecheck",
"verify": "bun wb verify",
"verify-full": "bun wb verify --full"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@tsconfig/bun": "1.0.10",
"@types/bun": "1.4.1",
"@types/react": "19.2.13",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.8",
"@willbooster/wb": "22.3.3",
"conventional-changelog-conventionalcommits": "9.3.1",
"lefthook": "2.1.12",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"oxlint-tsgolint": "7.0.2001",
"react": "19.2.6",
"semantic-release": "25.0.5",
"sort-package-json": "4.0.0"
},
"peerDependencies": {
"react": ">=18",
"typescript": "7.0.2"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}