-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.48 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@studiolambda/router",
"version": "2.1.1",
"license": "MIT",
"keywords": [
"router",
"react-router",
"isomorphic",
"routing",
"url",
"management",
"history",
"location"
],
"description": "Lightweight, isomorphic and framework agnostic router for modern UIs",
"author": {
"name": "Erik C. Forés",
"email": "soc@erik.cat",
"url": "https://erik.cat"
},
"homepage": "https://docs.lambda-studio.com/router/getting-started/",
"repository": {
"type": "git",
"url": "https://github.com/StudioLambda/Router.git"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"types": "./dist/src/router/index.d.ts",
"main": "./dist/router.cjs",
"module": "./dist/router.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/src/router/index.d.ts",
"import": "./dist/router.js",
"require": "./dist/router.cjs"
},
"./react": {
"types": "./dist/src/react/index.d.ts",
"import": "./dist/router_react.js",
"require": "./dist/router_react.cjs"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build:only": "vite build",
"build": "npm run build:only",
"prebuild": "npm run format:check && npm run lint",
"lint": "oxlint",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"dev": "vite .",
"test": "vitest run",
"test:ui": "vitest --ui --coverage",
"test:cover": "vitest run --coverage",
"prepack": "npm run build"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=11.0.0"
},
"runtime": {
"name": "node",
"version": ">=24.0.0"
}
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"devDependencies": {
"@rolldown/plugin-babel": "^0.2.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.7",
"babel-plugin-react-compiler": "^1.0.0",
"happy-dom": "^20.0.10",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.7"
}
}