-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "rcpy",
"version": "1.0.2",
"description": "Lightweight, fast, simple and flexible file copy utility for Node.js",
"homepage": "https://github.com/SukkaW/rcpy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SukkaW/rcpy.git"
},
"bugs": {
"url": "https://github.com/SukkaW/rcpy/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"scripts": {
"build": "rollup -c --configPlugin swc3",
"lint": "eslint --format=sukka .",
"test": "mocha -r @swc-node/register test/**/*.test.ts",
"release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
},
"keywords": [
"copy",
"cp",
"recursive-copy",
"file",
"directory",
"fs",
"filter",
"transform"
],
"author": "Sukka <https://skk.moe>",
"license": "MIT",
"dependencies": {
"async-sema": "^3.1.1"
},
"devDependencies": {
"@eslint-sukka/node": "^4.1.5",
"@eslint-sukka/ts": "^4.1.5",
"@swc-node/register": "^1.6.8",
"@swc/core": "^1.3.94",
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"bumpp": "^9.4.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.52.0",
"eslint-config-sukka": "^4.1.5",
"eslint-formatter-sukka": "^4.1.6",
"mocha": "^10.2.0",
"rollup": "^4.1.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-swc3": "^0.10.3",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"overrides": {
"rollup": "$rollup",
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"has": "npm:@nolyfill/has@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.values": "npm:@nolyfill/object.values@latest"
}
}