-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "@iamyth/core-codegen",
"version": "1.6.5",
"description": "A simple codegen for Library Starter kit",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Jamyth/core-codegen"
},
"author": "Jamyth",
"license": "MIT",
"files": [
"dist/**"
],
"bin": {
"core-codegen": "dist/bin/index.js"
},
"scripts": {
"run-script": "ts-node --project config/tsconfig.script.json",
"core-codegen": "ts-node --project config/tsconfig.src.json src/bin/index.ts",
"test": "node dist/bin/index.js",
"format": "yarn run-script script/format.ts",
"lint": "yarn run-script script/lint.ts",
"build": "yarn run-script script/build.ts"
},
"devDependencies": {
"@iamyth/prettier-config": "0.0.2",
"@types/fs-extra": "9.0.13",
"@types/node": "18.7.13",
"@types/yargs": "17.0.11",
"eslint-config-iamyth": "0.0.10",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"dependencies": {
"@iamyth/logger": "1.0.6",
"fs-extra": "10.1.0",
"yargs": "17.5.1"
}
}