-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.73 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "apext",
"version": "0.3.8",
"description": "A simple CLI tool to manage and organize Next.js API routes.",
"main": "index.ts",
"author": "Josue Munoz",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lifespikes/apext.git"
},
"keywords": [
"apext",
"nextjs",
"javascript",
"typescript"
],
"bin": {
"apext": "./build/index.js"
},
"pkg": {
"scripts": "build/**/*.js"
},
"scripts": {
"build": "rm -rf build; npx tsc",
"dev": "npx tsc --watch",
"package": "pkg . --targets node14-macos-x64 --output apext",
"i": "node ./build/index.js list",
"lint": "eslint **/*.ts",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage",
"cli": "yarn build && node ./build/index.js",
"release": "release-it"
},
"lint-staged": {
"**/*.ts": [
"yarn lint --fix"
]
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"dependencies": {
"@colors/colors": "1.5.0",
"commander": "9.4.0"
},
"devDependencies": {
"@types/node": "18.7.8",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"@vitest/coverage-c8": "0.22.1",
"eslint": "8.22.0",
"eslint-config-standard-with-typescript": "22.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-promise": "6.0.0",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"pkg": "5.8.0",
"release-it": "15.5.0",
"typescript": "4.7.4",
"vitest": "0.22.1"
}
}