forked from sveltejs/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.14 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
{
"name": "svelte-migrate",
"version": "1.4.3",
"description": "A CLI for migrating Svelte(Kit) codebases",
"keywords": [
"migration",
"upgrade",
"svelte",
"sveltekit",
"tool"
],
"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": {
"import-meta-resolve": "^4.1.0",
"kleur": "^4.1.5",
"magic-string": "^0.30.5",
"prompts": "^2.4.2",
"semver": "^7.5.4",
"tiny-glob": "^0.2.9",
"ts-morph": "^22.0.0",
"typescript": "^5.3.3",
"zimmerframe": "^1.1.2"
},
"devDependencies": {
"@types/node": "^18.19.3",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"prettier": "^3.1.1",
"svelte": "^4.2.10",
"vitest": "^1.6.0"
},
"scripts": {
"test": "vitest run --silent",
"check": "tsc",
"lint": "prettier --check .",
"format": "pnpm lint --write"
}
}