-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 940 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
41
42
{
"name": "@innocenzi/rename",
"version": "0.0.1",
"description": "Rename files from your editor",
"publishConfig": {
"access": "public"
},
"bin": {
"rn": "./dist/index.js"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "yarn build -- --watch",
"build": "tsup src/index.ts --format cjs,esm --dts-resolve",
"test": "jest --passWithNoTests",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@sucrase/jest-plugin": "^2.1.1",
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"tsup": "^5.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cac": "^6.7.8",
"fast-glob": "^3.2.7",
"kleur": "^4.1.4",
"temp-dir": "^2.0.0"
}
}