-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "remix-router-vue",
"version": "0.6.1",
"description": "A Vue UI layer for nested + data-driven routing via @remix-run/router",
"author": "[email protected]",
"license": "MIT",
"main": "dist/remix-router-vue.umd.js",
"module": "dist/remix-router-vue.es.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/remix-router-vue.es.js",
"require": "./dist/remix-router-vue.umd.js"
}
},
"sideEffects": false,
"homepage": "https://github.com/brophdawg11/remix-routers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/brophdawg11/remix-routers.git",
"directory": "packages/vue"
},
"bugs": {
"url": "https://github.com/brophdawg11/remix-routers/issues"
},
"keywords": [
"remix",
"remix-run",
"router",
"vue"
],
"files": [
"dist/**"
],
"scripts": {
"build": "vite build && tsc -b",
"clean": "git clean -fX .",
"dev": "vite dev",
"integration:open": "cypress open --config-file ../../cypress.config.ts",
"integration:start": "vite dev --mode=production --port 3000",
"integration:test": "cypress run --config-file ../../cypress.config.ts",
"integration": "start-server-and-test integration:start http-get://localhost:3000/ integration:test",
"prepublishOnly": "rm -rf dist && npm run build"
},
"dependencies": {
"@remix-run/router": "0.2.0-pre.10"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "2.3.3",
"vue": "^3.2.41"
}
}