-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
71 lines (71 loc) · 1.76 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"bin": {
"turbowatch": "./dist/bin/turbowatch.js"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"find-process": "^1.4.7",
"glob": "^9.3.1",
"jiti": "^1.18.2",
"micromatch": "^4.0.5",
"pidtree": "^0.6.0",
"randomcolor": "^0.6.2",
"roarr": "^7.15.0",
"semver": "^7.3.8",
"serialize-error": "^11.0.0",
"throttle-debounce": "^5.0.0",
"ts-custom-error": "^3.3.1",
"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",
"eslint": "^8.36.0",
"eslint-config-canonical": "^41.0.1",
"semantic-release": "^20.1.3",
"sinon": "^15.0.2",
"typescript": "^5.0.2",
"vitest": "^0.31.4"
},
"engines": {
"node": ">=18"
},
"files": [
"./src",
"./dist"
],
"keywords": [
"watch",
"files"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "turbowatch",
"repository": {
"type": "git",
"url": "https://github.com/gajus/turbowatch"
},
"scripts": {
"build": "rm -fr ./dist && tsc --project tsconfig.build.json",
"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",
"test:vitest": "vitest --passWithNoTests --single-thread"
},
"types": "./dist/index.d.ts",
"version": "1.0.0"
}