-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
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
{
"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": {
"@henrygd/queue": "^1.2.0"
},
"devDependencies": {
"@eslint-sukka/node": "^9.0.1",
"@swc-node/register": "^1.12.1",
"@swc/core": "^1.16.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.43",
"bumpp": "^10.4.1",
"earl": "^2.0.0",
"eslint": "^10.8.1",
"eslint-config-sukka": "^9.0.1",
"eslint-formatter-sukka": "^9.0.1",
"foxts": "^5.9.1",
"mocha": "^11.8.0",
"rollup": "^4.62.5",
"rollup-plugin-dts": "^6.5.1",
"rollup-plugin-swc3": "^0.12.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@11.22.0"
}