forked from andreasbm/router-slot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "router-slot",
"version": "1.6.4",
"description": "A powerful web component router",
"license": "MIT",
"author": "Andreas Mehlsen",
"type": "module",
"types": "src/lib/index.ts",
"main": "src/lib/index",
"bugs": {
"url": "https://github.com/andreasbm/router-slot/issues"
},
"homepage": "https://github.com/andreasbm/router-slot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasbm/router-slot.git"
},
"keywords": [
"webapp",
"custom",
"elements",
"powerful",
"routes",
"routing",
"route",
"router",
"slot",
"fragments",
"vanilla",
"web",
"component",
"router",
"navigation",
"zero dependencies"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf -g src/lib/*.{d.ts,d.ts.map,js,js.map} src/lib/util/*.{d.ts,d.ts.map,js,js.map} src/test/*.{d.ts,d.ts.map,js,js.map}",
"test": "vitest",
"start": "vite",
"test:browser": "vitest --browser \"chrome\"",
"test:ui": "vitest --ui",
"publish:patch": "np patch --contents=dist --no-cleanup",
"publish:minor": "np minor --contents=dist --no-cleanup",
"publish:major": "np major --contents=dist --no-cleanup"
},
"dependencies": {
"lit": "^3.1.2"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@vitest/browser": "^1.0.4",
"@vitest/ui": "^1.3.1",
"eslint": "^8.57.0",
"happy-dom": "^13.5.0",
"lit-analyzer": "^2.0.3",
"mocha": "^10.3.0",
"node-typescript-compiler": "^4.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"@typescript-eslint/eslint-plugin": "^7",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.4.2",
"vite": "^5.1.4",
"vitest": "^1.0.4",
"webdriverio": "^8.32.3"
},
"contributors": [
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4"
},
{
"name": "christophe Geiser"
}
]
}