-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.63 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "saph-convert",
"version": "1.2.0",
"description": "CLI tool to effortlessly convert Sapphire.js JavaScript commands to TypeScript",
"author": "fearandesire <fenixcoding@gmail.com>",
"license": "MIT",
"type": "module",
"main": "dist/cli.js",
"bin": "./dist/cli.js",
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js",
"#functions/*": "./dist/functions/*.js",
"#commands/*": "./dist/commands/*.js",
"#constants": "./dist/constants.js"
},
"sideEffects": "false",
"files": [
"dist/**/*.js"
],
"scripts": {
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write .",
"build": "tsc -b src",
"start": "node dist/cli.js",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build"
},
"dependencies": {
"ansis": "^3.3.2",
"commander": "^12.1.0",
"ts-morph": "^22.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@favware/cliff-jumper": "^4.0.3",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/decorators": "^6.1.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/framework": "^5.2.1",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.12.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.2",
"vitest": "^2.1.6"
},
"engines": {
"node": ">=v18"
},
"keywords": [
"sapphire.js command converter",
"js converter",
"command-line",
"cli",
"js-to-ts",
"code-conversion",
"typescript-converter",
"sapphire-converter",
"node.js",
"programming"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fearandesire/saph-convert.git"
},
"bugs": {
"url": "https://github.com/fearandesire/saph-convert/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@sapphire"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "yarn@4.3.1"
}