forked from gajus/turbowatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"bin": {
"turbowatch": "bin/turbowatch.mjs"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"glob": "^9.3.1",
"jiti": "^1.18.2",
"micromatch": "^4.0.5",
"p-retry": "^4.6.2",
"randomcolor": "^0.6.2",
"roarr": "^7.15.0",
"semver": "^7.3.8",
"serialize-error": "^11.0.0",
"throttle-debounce": "^5.0.0",
"yargs": "^17.7.1",
"zx": "^7.2.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@types/node": "^18.15.3",
"@types/sinon": "^10.0.13",
"@types/yargs": "^17.0.22",
"cspell": "^6.30.2",
"dts-bundle-generator": "^8.0.1",
"esbuild": "^0.17.18",
"eslint": "^8.36.0",
"eslint-config-canonical": "^41.0.1",
"rimraf": "^5.0.0",
"semantic-release": "^20.1.3",
"sinon": "^15.0.2",
"typescript": "^5.0.2",
"vitest": "^0.29.7"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": "./esm/index.mjs",
"require": "./cjs/index.cjs",
"types": "./index.d.ts"
}
},
"files": [
"index.d.ts",
"bin",
"cjs",
"esm"
],
"keywords": [
"watch",
"files"
],
"license": "BSD-3-Clause",
"main": "cjs/index.cjs",
"module": "esm/index.mjs",
"name": "turbowatch",
"repository": {
"type": "git",
"url": "https://github.com/gajus/turbowatch"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:bin && npm run build:dts",
"build:bin": "npm run build-base -- --format=esm --outfile=bin/turbowatch.mjs src/bin/turbowatch.ts",
"build:cjs": "npm run build-base -- --outfile=cjs/index.cjs src/index.ts",
"build:dts": "dts-bundle-generator --project tsconfig.build.json --no-check -o index.d.ts src/index.ts",
"build:esm": "npm run build-base -- --format=esm --outfile=esm/index.mjs src/index.ts",
"build-base": "esbuild --bundle --packages=external --platform=node --sourcemap",
"clean": "rimraf bin cjs esm dist index.d.ts",
"dev": "tsc --watch",
"lint": "npm run lint:tsc && npm run lint:eslint && npm run lint:cspell",
"lint:cspell": "cspell './**/*.{ts,tsx}' --no-progress --gitignore",
"lint:eslint": "eslint --color .",
"lint:tsc": "tsc",
"postpack": "npm run clean",
"prepack": "npm run build",
"test:vitest": "vitest --passWithNoTests"
},
"type": "module",
"types": "index.d.ts",
"version": "1.0.0"
}