-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.34 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
{
"name": "texivia-router",
"version": "1.0.0",
"description": "3 kB framework-agnostic TypeScript router with compiled regex matching",
"author": "Vadim Ferderer (https://ferderer.de/)",
"license": "Apache-2.0",
"main": "dist/texivia.js",
"module": "dist/texivia.mjs",
"types": "dist/texivia.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/texivia.d.ts",
"import": "./dist/texivia.mjs",
"require": "./dist/texivia.js"
}
},
"scripts": {
"build": "vite build",
"dev": "vite",
"test": "vitest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/ferderer/texivia.git"
},
"homepage": "https://ferderer.de/projects/texivia",
"bugs": {
"url": "https://github.com/ferderer/texivia/issues"
},
"keywords": [
"router",
"routing",
"spa",
"typescript",
"framework-agnostic",
"lightweight",
"single-page-app",
"svelte",
"vue",
"react"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.7.4",
"eslint": "^8.57.0",
"jsdom": "^26.1.0",
"terser": "^5.39.0",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vitest": "^3.1.2"
},
"publishConfig": {
"access": "public"
}
}