-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "@elg/tscodegen",
"version": "0.4.0",
"description": "TypeScript string-based code generation tool, with hashed files and manually editable sections",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:taneliang/tscodegen.git",
"author": "E-Liang Tan <eliang@eliangtan.com>",
"license": "MIT",
"engines": {
"node": ">=12.4.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.dist.json",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"lint": "yarn lint:code && yarn lint:misc",
"lint:code": "eslint src ./*.js ./*.mjs",
"lint:code:fix": "yarn lint:code --fix",
"lint:misc": "prettier --check './*.{js,mjs,json,md}'",
"lint:misc:fix": "yarn lint:misc --write",
"prepare": "yarn clean && yarn build"
},
"dependencies": {
"@prettier/sync": "^0.6.1"
},
"peerDependencies": {
"prettier": "3.x"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/mock-fs": "^4.13.4",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"codecov": "^3.8.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"mock-fs": "^5.5.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"keywords": [
"codegen",
"typescript"
]
}