-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "voby-router",
"description": "Universal router for voby",
"author": "high1",
"license": "MIT",
"version": "0.2.1",
"homepage": "https://github.com/vobyjs/voby-router#readme",
"repository": {
"type": "git",
"url": "https://github.com/vobyjs/voby-router"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"prepublishOnly": "tsup",
"prettier": "prettier -w tsconfig.json tsup.config.ts src/**/*.{ts,tsx}"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"tsup": "^6.3.0",
"typescript": "^4.8.4",
"voby": "^0.43.2"
},
"peerDependencies": {
"voby": "*"
},
"packageManager": "[email protected]"
}