-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 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
{
"name": "watch-module",
"type": "module",
"version": "4.0.0",
"description": "A Javascript module watcher to work locally with package",
"bin": {
"watch-module": "bin/watch-module.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc --noEmit",
"lint:eslint": "eslint .",
"dev": "node dev.cjs",
"build": "tsc --build tsconfig.json",
"prepublishOnly": "tsc --build tsconfig.json",
"version": "echo \"export const VERSION = '$npm_package_version';\" > src/version.ts && git add src/version.ts"
},
"repository": "https://github.com/mapado/watch-module",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.3",
"debounce": "^1.2.1",
"fs-extra": "^11.1.0",
"has-yarn": "^3.0.0",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
"ink-tab": "^4.3.1",
"ink-text-input": "^4.0.3",
"minimatch": "^6.0.4",
"minimist": "^1.2.6",
"react": "^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@types/debounce": "^1.2.1",
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^45.0.2",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"packageManager": "yarn@4.9.4"
}