forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 874 Bytes
/
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
{
"name": "svelte-migrate",
"version": "1.2.1",
"description": "A CLI for migrating Svelte(Kit) codebases",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/kit",
"directory": "packages/migrate"
},
"license": "MIT",
"homepage": "https://kit.svelte.dev",
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"svelte-migrate": "./bin.js"
},
"files": [
"bin.js",
"migrations",
"utils.js",
"!migrations/**/*.spec.js",
"!migrations/**/samples.md"
],
"dependencies": {
"kleur": "^4.1.5",
"magic-string": "^0.30.0",
"prompts": "^2.4.2",
"tiny-glob": "^0.2.9",
"ts-morph": "^18.0.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/node": "^16.18.6",
"@types/prompts": "^2.4.1",
"prettier": "^2.8.0",
"vitest": "^0.31.0"
},
"scripts": {
"test": "vitest run",
"check": "tsc"
}
}