-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 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
{
"name": "@baseplate-dev/code-morph",
"version": "1.0.7",
"private": true,
"description": "Simple package for running code migrations on the codebase",
"keywords": [
"ast-manipulation",
"baseplate",
"code-generation",
"code-transformation",
"full-stack",
"migration-tools",
"typescript"
],
"homepage": "https://www.baseplate.dev",
"repository": {
"type": "git",
"url": "https://github.com/halfdomelabs/baseplate",
"directory": "packages/code-morph"
},
"license": "MPL-2.0",
"author": "Half Dome Labs LLC",
"type": "module",
"imports": {
"#src/*": {
"development": "./src/*",
"default": "./dist/*"
}
},
"files": [
"LICENSE",
"scripts/**/*",
"CHANGELOG"
],
"scripts": {
"lint": "oxlint && eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier -w -l .",
"run:morpher": "tsx -C development src/scripts/run-morpher.ts",
"run:script": "tsx -C development",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@baseplate-dev/utils": "workspace:*",
"@inquirer/prompts": "7.8.3",
"change-case": "5.4.4",
"commander": "^12.1.0",
"es-toolkit": "1.44.0",
"globby": "^14.0.2",
"ora": "^8.0.1",
"prettier": "catalog:",
"ts-morph": "27.0.2",
"yaml": "2.8.1",
"zod": "catalog:"
},
"devDependencies": {
"@baseplate-dev/tools": "workspace:*",
"@types/node": "catalog:",
"eslint": "catalog:",
"oxlint": "catalog:",
"prettier": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": "^22.0.0"
},
"volta": {
"extends": "../../package.json"
}
}