-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "dosido",
"version": "1.1.0",
"description": "TypeScript module refactoring tools.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">20"
},
"repository": {
"url": "https://github.com/jaredly/dosido",
"type": "git"
},
"bin": {
"dosido": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
".claude/skills",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.json",
"test": "vitest",
"test:run": "vitest run test/core.test.ts test/commands.test.ts",
"test:dist": "pnpm clean && pnpm build && vitest run test/cli-dist.test.ts",
"lint": "oxlint src test/*.test.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"prepack": "npm run build",
"pack:dry-run": "npm pack --dry-run"
},
"keywords": [
"typescript",
"refactoring",
"refactor",
"codemod",
"cli",
"ast",
"babel",
"imports",
"import-rewriter",
"module-refactoring",
"dependency-analysis",
"code-migration",
"unused-exports",
"dead-code",
"react",
"hmr",
"fast-refresh",
"tsconfig",
"path-aliases"
],
"dependencies": {
"@babel/parser": "^7.16.12",
"@babel/traverse": "^7.17.3",
"@babel/types": "^7.17.0",
"fast-glob": "^3.2.11",
"yaml": "^2.9.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^24.0.0",
"oxlint": "^1.0.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}