-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 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
{
"name": "@elg/tscodegen",
"version": "0.5.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": ">=20.18.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.dist.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "yarn lint:code && yarn lint:misc",
"lint:code": "eslint .",
"lint:code:fix": "yarn lint:code --fix",
"lint:misc": "prettier --check './*.{js,mjs,ts,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/js": "^10.0.1",
"@types/mock-fs": "^4.13.4",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"mock-fs": "^5.5.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"keywords": [
"codegen",
"typescript"
]
}