-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
{
"name": "migrate-esm-imports",
"version": "0.1.0",
"description": "Migrate CommonJS imports to ESM imports with extensions",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/kingston/migrate-esm-imports"
},
"license": "MIT",
"author": "Kingston Tam",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier -w .",
"release": "pnpm build && pnpm changeset publish",
"start": "node dist/cli.js",
"test": "vitest"
},
"dependencies": {
"commander": "12.1.0",
"get-tsconfig": "4.8.1",
"globby": "14.0.2",
"jscodeshift": "17.1.1",
"p-limit": "6.2.0"
},
"devDependencies": {
"@changesets/cli": "2.27.11",
"@ktam/lint-node": "0.3.0",
"@tsconfig/node20": "20.1.4",
"@types/jscodeshift": "0.12.0",
"@types/node": "20.17.10",
"eslint": "9.17.0",
"memfs": "4.15.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.6.3",
"vitest": "2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"volta": {
"node": "20.18.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}