forked from RandomsTS/code-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.27 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
{
"name": "@randomsts/code-generator",
"version": "2.9.11",
"description": "A lightweight CLI to recursively include all file from a directory in a single source file.",
"type": "commonjs",
"keywords": [
"randomsts",
"randoms",
"code-generator",
"cli",
"randoms-cli",
"randoms-code-generator",
"randoms-code-generator-cli",
"randoms-backend",
"randoms-code-generator-npm",
"npm-randoms-code-generator",
"@randoms-pkg/code-generator",
"code generator",
"file inclusion",
"directory traversal",
"source code",
"lightweight package",
"recursive inclusion",
"JavaScript",
"Node.js",
"module bundler",
"build tool"
],
"main": "./dist/index.js",
"types": "./index.d.ts",
"ts-module": "./index.ts",
"author": "Zain-ul-din",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RandomsDev/code-generator.git"
},
"bin": {
"randoms-generator": "./bin/randoms-generator"
},
"scripts": {
"build": "tsc",
"test:dev": "node ./dist/cli.js",
"test:start": "node ./dist/index.js"
},
"private": false,
"devDependencies": {
"@types/node": "^18.11.15",
"typescript": "^4.9.4"
},
"homepage": "https://github.com/RandomsDev/code-generator"
}