-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "eject-enum",
"version": "0.2.0",
"description": "Eject enums from your TypeScript codebases.",
"keywords": [
"TypeScript",
"enum",
"rewriting"
],
"author": {
"name": "jiftechnify",
"email": "jiftech.stlfy@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiftechnify/eject-enum"
},
"homepage": "https://github.com/jiftechnify/eject-enum#readme",
"bugs": {
"url": "https://github.com/jiftechnify/eject-enum/issues"
},
"license": "MIT",
"main": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js"
}
},
"typings": "./dist/index.d.ts",
"bin": "./bin/cli.js",
"files": [
"dist",
"bin"
],
"scripts": {
"prepare": "husky install",
"prepack": "yarn build",
"exec-ts": "node -r esbuild-register",
"lint": "run-p type-check lint:*",
"lint:format": "prettier --check --loglevel warn {src,test}/**/*.ts",
"lint:ts": "eslint --max-warnings 0 src/ test/",
"fix": "run-s fix:*",
"fix:format": "prettier --write --loglevel warn {src,test}/**/*.ts",
"fix:ts": "eslint --fix src/ test/",
"type-check": "tsc --noEmit",
"test": "vitest",
"esbuild": "node build.js",
"build": "run-s type-check esbuild",
"buildw": "nodemon -e js,ts --ignore dist/ build.js",
"docs": "typedoc src/index.ts"
},
"dependencies": {
"ora": "^6.1.2",
"ts-morph": "^19.0.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.4",
"esbuild": "^0.18.11",
"esbuild-register": "^3.3.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4",
"vitest": "^0.33.0"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --max-warnings 0",
"prettier --check --loglevel warn"
]
}
}