-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
155 lines (155 loc) · 5.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "@roxi/routify",
"version": "3.0.0-next.22",
"main": "lib/runtime/index.js",
"module": "lib/runtime/index.js",
"svelte": "lib/runtime/index.js",
"type": "module",
"types": "index.d.ts",
"typesVersions": {
"*": {
"plugins": [
"./typings/plugins/index.d.ts"
],
"plugins/*": [
"./typings/plugins/*"
],
"vite-plugin": [
"./typings/lib/extra/vite-plugin/vite-plugin.d.ts"
],
"tools": [
"./typings/lib/extra/tools/ssr.d.ts"
],
"helpers/RouteOnScroll": [
"./typings/lib/runtime/helpers/dedicated/RouteOnScroll/index.d.ts"
],
"decorators": [
"./typings/lib/runtime/decorators/index.d.ts"
],
"components/*": [
"./lib/runtime/components/*"
]
}
},
"bin": {
"routify": "./lib/cli/index.js",
"routify3": "./lib/cli/index.js"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"svelte": "./lib/runtime/index.js",
"default": "./lib/runtime/index.js"
},
"./vite-plugin": {
"types": "./typings/lib/extra/vite-plugin/vite-plugin.d.ts",
"default": "./lib/extra/vite-plugin/vite-plugin.js"
},
"./lib/extra/vite-plugin": "./lib/extra/vite-plugin/vite-plugin.js",
"./lib/extra/express-plugin": "./lib/extra/express-plugin/index.js",
"./lib/*": "./lib/*",
"./helpers/RouteOnScroll": {
"types": "./typings/lib/runtime/helpers/dedicated/RouteOnScroll/index.d.ts",
"default": "./lib/runtime/helpers/dedicated/RouteOnScroll/index.js"
},
"./decorators": {
"default": "./lib/runtime/decorators/index.js",
"types": "./typings/lib/runtime/decorators/index.d.ts"
},
"./typings/*": "./typings/*",
"./plugins/*": "./plugins/*",
"./plugins": {
"default": "./plugins/index",
"types": "./typings/plugins/index.d.ts"
},
"./tools": {
"default": "./lib/extra/tools/index.js",
"types": "./typings/lib/extra/tools/ssr.d.ts"
},
"./components/*": "./lib/runtime/components/*"
},
"scripts": {
"build": "run-s build:*",
"build:lint": "npm run util:prettier -- --write",
"build:documentation": "documentation readme types/typedef.js -f md --section API",
"build:typings": "tsc ",
"test": "run-s test:*",
"test:types": "tsc --noEmit --emitDeclarationOnly false",
"test:probs": "probs test,lib",
"test-bak:jest": "jest . --detectOpenHandles",
"test:lint": "npm run util:prettier -- --check",
"util:prettier": "prettier -c --plugin-search-dir=. \"{common,lib,plugins,test}/**/*.{js,svelte}\" --ignore-path .gitignore",
"semantic-release": "semantic-release"
},
"author": "jakobrosenberg@gmail.com",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"documentation": "^13.2.5",
"esm-loader-svelte": "^1.0.6",
"fkill": "^7.2.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.28.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.5.1",
"probs": "^1.4.0",
"rollup": "^3.3.0",
"rollup-plugin-svelte": "^7.1.0",
"semantic-release": "^17.4.7",
"spank": "^2.0.0",
"spassr": "^2.6.0",
"svelte-esm-loader": "^0.0.3",
"tree-kill": "^1.2.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@roxi/routify": "file:.",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"cachewrap": "^0.0.1",
"cheap-watch": "^1.0.4",
"cheerio": "^1.0.0",
"commander": "^7.2.0",
"configent": "^3.0.0-13",
"consolite": "^0.3.12",
"fs-extra": "^10.0.0",
"hookar": "^0.0.7",
"kleur": "^4.1.4",
"node-fetch": "^3.3.0",
"persistable": "^0.1.2",
"prompts": "^2.4.2",
"scroll-into-view-if-needed": "^3.1.0",
"svelte": "^3.46.1"
},
"peerDependencies": {
"spank": "^2.0.0",
"vite": "^3.2.4 || ^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
},
"spank": {
"optional": true
}
},
"prettier": {
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"bracketSpacing": true,
"arrowParens": "avoid",
"semi": false,
"useTabs": false,
"tabWidth": 4,
"printWidth": 90,
"svelteSortOrder": "options-scripts-markup-styles",
"svelteAllowShorthand": true,
"svelteBracketNewLine": false,
"svelteIndentScriptAndStyle": true
},
"volta": {
"node": "19.1.0"
}
}