-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "pkfire",
"version": "0.8.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Node application developer toolchains installer CLI",
"homepage": "https://github.com/node-jeneralize/pkfire",
"private": false,
"author": {
"email": "dev@huequica.xyz",
"name": "huequica",
"url": "https://github.com/huequica"
},
"repository": {
"type": "git",
"url": "https://github.com/node-jeneralize/pkfire"
},
"bin": {
"pkfire": "./bin/pkfire"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "tsx src/index.ts",
"test": "jest",
"typeCheck": "tsc --noEmit",
"lint:js": "eslint --ext .js,.ts src",
"lint:code": "prettier .",
"lint:js:fix": "eslint --fix --ext .js,.ts src",
"lint:code:fix": "prettier --write .",
"lint": "npm run lint:code && npm run lint:js",
"lint:fix": "npm run lint:code:fix && npm run lint:js:fix",
"build": "yarn typeCheck && esbuild --minify --bundle --outdir=dist --platform=node src/index.ts",
"prepare": "yarn build"
},
"dependencies": {
"cac": "^6.7.12",
"execa": "^6.1.0",
"inquirer": "^8.2.4",
"mkdirp": "^2.1.3",
"yaml": "^2.0.1"
},
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.7",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"esbuild": "^0.18.17",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.0",
"pkg-types": "^1.0.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"tsx": "^3.12.3",
"typescript": "^5.1.6"
}
}