-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "omi-router",
"version": "4.0.3",
"description": "Router for Omi",
"main": "dist/index.es.js",
"exports": {
".": "./dist/index.es.js"
},
"types": "./dist/src/router.d.ts",
"scripts": {
"start": "vite",
"dev": "yarn start",
"build": "vite build",
"build:demo": "vite build",
"pretest": "yarn build",
"test": "web-test-runner \"test/*.js\" --node-resolve",
"lint": "eslint 'src/**/*.{js,ts,tsx,jsx}' 'examples/**/*.{js,ts,tsx,jsx}' --fix"
},
"files": [
"dist",
"types"
],
"dependencies": {
"omi": "latest",
"omi-router": "latest",
"omi-suspense": "latest"
},
"devDependencies": {
"@open-wc/testing": "^2.5.33",
"@types/node": "^16.4.13",
"@typescript-eslint/parser": "^5.53.0",
"@web/test-runner": "^0.13.15",
"eslint": "^8.34.0",
"sass": "^1.37.5",
"typescript": "^4.3.5",
"vite": "^2.4.4",
"vite-plugin-dts": "^3.6.0"
},
"license": "MIT",
"keywords": [
"omi",
"omiu"
],
"authors": [
"The Omi Authors (https://github.com/Tencent/omi/contributors)"
],
"repository": "Tencent/omi",
"bugs": "https://github.com/Tencent/omi/issues/",
"homepage": "http://omijs.org"
}