-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "codeflattener",
"version": "1.2.0",
"description": "CodeFlattener is a versatile Node.js command-line tool that consolidates the structure and code of a repository, including JavaScript and TypeScript files, into a single flat file. It resolves import statements, handles TypeScript transpilation, supports import aliases, and offers the option to output either a JavaScript or TypeScript file.",
"main": "index.mjs",
"type": "module",
"bin": {
"codeflattener": "./index.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bchr02/CodeFlattener.git"
},
"keywords": [
"codeflattener",
"code",
"flatten",
"repository",
"export",
"single file",
"JavaScript",
"TypeScript",
"ES module",
"troubleshooting",
"AI tools",
"ChatGPT",
"code advice",
"code analysis",
"multifile",
"project",
"node.js",
"npm"
],
"author": "Bill Christo",
"license": "MIT",
"bugs": {
"url": "https://github.com/bchr02/CodeFlattener/issues"
},
"homepage": "https://github.com/bchr02/CodeFlattener#readme",
"dependencies": {
"es-module-lexer": "^1.5.3",
"minimist": "^1.2.8",
"typescript": "^5.5.2"
}
}