-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "remix-router-svelte",
"version": "0.3.0",
"description": "A Svelte UI layer for nested + data-driven routing via @remix-run/router",
"author": "[email protected]",
"license": "MIT",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"type": "module",
"sideEffects": false,
"homepage": "https://github.com/brophdawg11/remix-routers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/brophdawg11/remix-routers.git",
"directory": "packages/svelte"
},
"bugs": {
"url": "https://github.com/brophdawg11/remix-routers/issues"
},
"keywords": [
"remix",
"remix-run",
"router",
"svelte"
],
"files": [
"*"
],
"scripts": {
"build": "svelte-kit package",
"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": "npm run build"
},
"dependencies": {
"@remix-run/router": "0.2.0-pre.10",
"svelte": "^3.48.0"
},
"peerDependencies": {
"svelte": ">=3.47.0"
},
"devDependencies": {
"@sveltejs/kit": "^1.0.0-next.372",
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tsconfig/svelte": "^3.0.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.11"
}
}