-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.29 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "link-and-tink",
"version": "1.0.0",
"description": "oclif example Hello World CLI",
"author": "chetzof @chetzof",
"bin": {
"link-and-tink": "./bin/run.js",
"lnt": "./bin/run.js"
},
"prettier": "@vladcos/prettier-config",
"homepage": "https://github.com/chetzof/link-and-tink",
"license": "MIT",
"main": "dist/index.js",
"repository": "chetzof/link-and-tink",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@npmcli/arborist": "^7.4.0",
"@oclif/core": "^2.15.0",
"@oclif/plugin-autocomplete": "^2.3.8",
"@oclif/plugin-help": "^5",
"@oclif/plugin-not-found": "^2.4.1",
"@oclif/plugin-warn-if-update-available": "^2.1.0",
"cachedir": "^2.4.0",
"chalk": "4.1.2",
"chokidar": "^3.6.0",
"conf": "^10.2.0",
"execa": "^7.1.1",
"fs-extra": "^11.2.0",
"fs-jetpack": "^5.1.0",
"listr2": "^6.6.1",
"log-symbols": "5.1.0",
"node-notifier": "^10.0.1",
"npm-packlist": "^7.0.4",
"pidtree": "^0.6.0",
"pm2": "^5.3.1",
"promise-mixin": "^1.0.7",
"promised-gateway": "^1.1.0",
"tiny-typed-emitter": "^2.1.0",
"tsconfig-paths": "^4.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/chai": "^4",
"@types/chokidar": "^2.1.3",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.24",
"@types/node-notifier": "^8.0.5",
"@types/npm-packlist": "^7.0.3",
"@types/npmcli__arborist": "^5.6.5",
"@vladcos/eslint-config": "^0.0.35",
"@vladcos/prettier-config": "^0.0.33",
"@vladcos/tsconfig": "^0.0.25",
"eslint-define-config": "^1.23.0",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"oclif": "^3",
"prettier": "^3.2.5",
"semantic-release": "^21.0.1",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"tsx": "^4.7.1",
"type-fest": "^4.10.3",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "0.34.4",
"vitest-mock-process": "^1.0.4"
},
"oclif": {
"bin": "linktink",
"dirname": "linktink",
"default": "link",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found"
]
},
"scripts": {
"build": "shx rm -rf dist; tsc; tsc-alias",
"watch": "tsc -w",
"lint": "npm run lint:tsc; npm run lint:eslint",
"fix": "npm run fix:prettier . && npm run fix:eslint .",
"fix:prettier": "prettier --write --ignore-unknown",
"fix:eslint": "NODE_ENV=production eslint --fix",
"lint:eslint": "NODE_ENV=production eslint .",
"lint:tsc": "tsc --noEmit",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "vitest",
"version": "oclif readme && git add README.md",
"prepare": "husky install",
"semantic-release": "semantic-release",
"lint-staged:test": "vitest related --run",
"pm2": "pm2"
},
"engines": {
"node": ">=16"
},
"bugs": "https://github.com/chetzof/linktink/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"type": "module"
}