-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "@ember-data/codemods",
"version": "5.4.0-alpha.131",
"description": "Codemods for EmberData paradigms",
"keywords": [],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:emberjs/data.git",
"directory": "packages/codemods"
},
"type": "module",
"bin": {
"codemods": "codemods"
},
"scripts": {
"build:cli": "bun build bin/codemods.ts --compile --target node --outfile codemods --sourcemap",
"lint": "eslint . --quiet --cache --cache-strategy=content",
"_syncPnpm": "bun run sync-dependencies-meta-injected"
},
"exports": {
".": {
"default": "./src/index.ts"
}
},
"files": [
"bin",
"src",
"utils",
"codemods"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ignore": "^5.3.2",
"jscodeshift": "^0.15.2",
"strip-ansi": "^7.1.0",
"typescript": "^5.7.2",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/bun": "^1.1.4",
"@types/jscodeshift": "0.11.11",
"@warp-drive/internal-config": "workspace:*",
"eslint": "^9.12.0",
"pnpm-sync-dependencies-meta-injected": "0.0.14",
"qunit": "^2.20.1"
},
"engines": {
"node": ">= 18.20.4"
},
"volta": {
"extends": "../../package.json"
},
"packageManager": "[email protected]"
}