-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 KB
/
package.json
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
{
"name": "@maxmilton/solid-router",
"version": "0.3.2",
"type": "module",
"description": "A lightweight History API based router for Solid",
"repository": "maxmilton/solid-router",
"author": "Max Milton <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "src"],
"workspaces": ["test/fixtures"],
"scripts": {
"build": "vite build",
"lint": "bun lint:fmt && bun lint:js && bun lint:ts",
"lint:fmt": "biome check",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"postbuild": "tsc --project tsconfig.d.json",
"prebuild": "rm -rf dist",
"pretest:e2e": "bun --cwd test/fixtures build",
"test": "vitest run --coverage",
"test:e2e": "playwright test"
},
"peerDependencies": {
"solid-js": "^1.0.0"
},
"dependencies": {
"qss": "^3.0.0",
"regexparam": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.7.0",
"@playwright/test": "1.45.2",
"@solidjs/testing-library": "0.8.8",
"@testing-library/jest-dom": "6.4.6",
"@types/bun": "1.1.6",
"@types/eslint__eslintrc": "2.1.1",
"@types/eslint__js": "8.42.3",
"@vitest/coverage-v8": "2.0.3",
"eslint": "9.7.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unicorn": "54.0.0",
"eslint-plugin-vitest": "0.5.4",
"jsdom": "24.1.0",
"sirv": "2.0.4",
"solid-js": "1.8.18",
"typescript": "5.5.3",
"typescript-eslint": "7.16.1",
"vite": "5.3.4",
"vite-plugin-solid": "2.10.2",
"vitest": "2.0.3"
}
}