-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "codegen",
"version": "1.0.0",
"description": "",
"main": "out/index.js",
"type": "module",
"scripts": {
"prebuild": "del out/",
"build": "ttsc",
"postbuild": "cpy '**/*' '!**/*.ts' '../out' --cwd=src --no-overwrite --parents",
"start": "node out/index.js",
"test": "jest"
},
"author": "Viktor Shchelochkov <[email protected]> (https://hloth.dev/)",
"license": "MIT",
"dependencies": {
"dedent": "^0.7.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/dedent": "^0.7.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"babel-jest": "^29.2.2",
"cpy-cli": "^3.1.1",
"del-cli": "^4.0.1",
"eslint": "^8.8.0",
"ts-jest": "^29.0.3",
"ttypescript": "^1.5.13",
"typescript": "^4.8.3"
}
}