-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.51 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "copytree",
"version": "0.16.0",
"description": "A Node.js CLI tool and library that copies directory structures and file contents into structured formats",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"copytree": "./bin/copytree.js"
},
"scripts": {
"start": "node bin/copytree.js",
"start:dev": "node bin/copytree.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest --config jest.integration.config.js",
"test:e2e": "jest tests/e2e",
"test:electron": "cd tests/electron && npm install && npm test",
"typecheck": "tsc --noEmit -p tests/types/tsconfig.json",
"profile": "node scripts/profile.js",
"profile:cpu": "node scripts/profile.js --type cpu",
"profile:heap": "node scripts/profile.js --type heap",
"profile:compare": "node scripts/profile-compare.js",
"benchmark": "node tests/performance/bench.js",
"benchmark:all": "node tests/performance/bench.js --all",
"benchmark:fixtures": "node tests/performance/bench.js --fixtures",
"benchmark:compare": "node tests/performance/bench.js --compare",
"benchmark:discovery": "node tests/performance/file-discovery.bench.js",
"test:performance": "jest --config jest.performance.config.js --runInBand",
"lint": "eslint src/ bin/",
"lint:fix": "eslint src/ bin/ --fix",
"format": "prettier --write \"src/**/*.{js,jsx}\" \"bin/**/*.js\" \"tests/**/*.{js,jsx}\"",
"format:check": "prettier --check \"src/**/*.{js,jsx}\" \"bin/**/*.js\" \"tests/**/*.{js,jsx}\"",
"prepublishOnly": "npm run lint && npm run test && npm run typecheck"
},
"keywords": [
"cli",
"directory",
"xml",
"copy",
"ai",
"programmatic",
"api",
"library",
"electron",
"sdk",
"scan",
"format"
],
"author": "Greg Priday <greg@siteorigin.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gregpriday/copytree.git"
},
"bugs": {
"url": "https://github.com/gregpriday/copytree/issues"
},
"homepage": "https://copytree.dev",
"engines": {
"node": ">=22.12.0"
},
"type": "module",
"sideEffects": false,
"files": [
"src/",
"bin/",
"types/",
"profiles/",
"config/",
"!**/CLAUDE.md"
],
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.6.2",
"clipboardy": "^5.3.2",
"commander": "^15.0.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.4.0",
"ignore": "^7.0.6",
"ink": "^7.1.1",
"ink-spinner": "^5.0.0",
"js-yaml": "^4.3.0",
"lodash": "^4.18.1",
"micromatch": "^4.0.8",
"minimatch": "^10.2.5",
"ora": "^9.4.1",
"p-limit": "^7.3.1",
"react": "^19.2.8",
"simple-git": "^3.36.0",
"xmlbuilder2": "^4.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@babel/register": "^7.29.7",
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"babel-jest": "^30.2.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "^10.8.0",
"fast-xml-parser": "^5.10.1",
"ink-testing-library": "^4.0.0",
"jest": "^30.4.2",
"prettier": "^3.9.6",
"strip-ansi": "^7.2.0",
"typescript": "^7.0.2"
},
"overrides": {
"test-exclude": "^7.0.1",
"glob": "^10.4.5"
}
}