-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 974 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 974 Bytes
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
{
"name": "yeap-router",
"version": "0.3.2",
"description": "Router for yeap",
"main": "./lib/app.js",
"types": "./types/app.d.ts",
"type": "module",
"files": [
"lib/**/*",
"types/**/*",
"README.md"
],
"scripts": {
"test": "vitest",
"coverage": "vitest --coverage",
"dev": "tsc -w",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeapjs/router.git"
},
"keywords": [
"yeap",
"router",
"components"
],
"author": "hanako-eo",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeapjs/router/issues"
},
"homepage": "https://github.com/yeapjs/router#readme",
"devDependencies": {
"@vitest/coverage-c8": "^0.23.2",
"happy-dom": "^6.0.4",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vitest": "^0.23.2",
"yeap": "1.x"
},
"peerDependencies": {
"yeap": "1.x"
}
}