-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 KB
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": "svelte-migrate",
"version": "1.10.2",
"type": "module",
"description": "A CLI for migrating Svelte(Kit) codebases",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/cli",
"directory": "packages/migrate"
},
"homepage": "https://svelte.dev",
"scripts": {
"check": "tsgo",
"format": "pnpm lint --write",
"lint": "prettier --check .",
"test": "vitest run",
"test:ui": "vitest"
},
"files": [
"bin.js",
"migrations",
"utils.js",
"!migrations/**/*.spec.js",
"!migrations/**/samples.md"
],
"bin": {
"svelte-migrate": "./bin.js"
},
"dependencies": {
"@clack/prompts": "1.0.0-alpha.1",
"import-meta-resolve": "^4.2.0",
"magic-string": "^0.30.21",
"package-manager-detector": "^0.2.11",
"picocolors": "^1.1.1",
"semver": "^7.7.3",
"tiny-glob": "^0.2.9",
"ts-morph": "^24.0.0",
"typescript": "^6.0.0",
"zimmerframe": "^1.1.4"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"svelte": "^5.53.0"
},
"keywords": [
"migration",
"upgrade",
"svelte",
"sveltekit",
"tool"
]
}