-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "mvdir-ts",
"version": "1.0.22",
"description": "TS version of mvdir. Move or copy files and directories. (async, recursive, across devices, copy & delete fallback, minimalistic with 0 dependencies)",
"types": "./dist/types/index.d.ts",
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"author": "wangjue666",
"repository": {
"type": "git",
"url": "https://github.com/sellerartifact/mvdir-ts"
},
"scripts": {
"prepare": "modern build && husky install",
"dev": "modern dev",
"build": "modern build",
"build:watch": "modern build -w",
"reset": "rimraf ./**/node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"change-status": "modern change-status",
"gen-release-note": "modern gen-release-note",
"release": "modern release",
"new": "modern new",
"upgrade": "modern upgrade",
"test": "modern test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@modern-js/module-tools": "2.51.0",
"@modern-js/eslint-config": "2.51.0",
"typescript": "~5.0.4",
"@types/node": "~16.11.7",
"rimraf": "~3.0.2",
"lint-staged": "~13.1.0",
"prettier": "~2.8.1",
"husky": "~8.0.1",
"@modern-js/plugin-testing": "2.51.0",
"@types/jest": "~29.2.4"
},
"sideEffects": [],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}