-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
40 lines (40 loc) · 941 Bytes
/
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
{
"name": "module-replacements-codemods",
"version": "1.1.0",
"description": "",
"type": "module",
"scripts": {
"test": "node --test test/codemod.test.js",
"test:watch": "node --test --watch test/codemod.test.js",
"format": "biome format --write **/*",
"lint:types": "tsc",
"which": "node scripts/which.js",
"prepublishOnly": "npm run lint:types && node scripts/generate-index.js"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./index.js"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@ast-grep/napi": "^0.25.4",
"jscodeshift": "^0.16.1"
},
"files": [
"types",
"index.js",
"CONSTANTS.js",
"codemods"
],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jscodeshift": "^0.11.11",
"@types/node": "^20.14.11",
"module-replacements": "^2.2.0",
"typescript": "~5.5.3"
}
}