-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "brotli-cli",
"version": "2.1.0",
"repository": "git@github.com:dzek69/brotli-cli.git",
"homepage": "https://github.com/dzek69/brotli-cli",
"author": "Jacek Nowacki",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest",
"docs": "typedoc src/index.ts --skipErrorChecking --out docs --includeVersion",
"compile": "pnpm run compile:cjs",
"compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
"lint:fix": "pnpm run lint --fix",
"prepack": "pnpm run compile",
"prepublishOnly": "pnpm audit && pnpm run lint && pnpm run test && pnpm run docs",
"start:dev": "nodemon",
"start:dev:compatibility": "TS_NODE_FILES=true pnpm run start:dev",
"prepare": "husky install",
"updates": "pnpm dlx npm-check-updates --dep prod",
"updates:dev": "pnpm dlx npm-check-updates --dep dev",
"updates:all": "pnpm dlx npm-check-updates"
},
"bin": "./dist/index.js",
"type": "module",
"dependencies": {
"@ezez/errors": "^6.0.2",
"fast-glob": "^3.2.12",
"queue-system": "^4.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@dzek69/eslint-config-base": "^2.5.0",
"@dzek69/eslint-config-import": "^1.3.0",
"@dzek69/eslint-config-import-typescript": "^1.0.1",
"@dzek69/eslint-config-typescript": "^1.1.1",
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@types/brotli": "^1.3.0",
"@types/jest": "^29.5.5",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"babel-plugin-module-extension": "^0.1.3",
"eslint": "^8.44.0",
"eslint-plugin-import": "^2.28.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"must": "^0.13.4",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"resolve-tspaths": "^0.8.15",
"ts-node": "^10.9.1",
"typedoc": "^0.23.0",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-push": "pnpm run prepublishOnly && pnpm run compile"
}
},
"libraryTemplate": {
"version": "3.11.2",
"language": "typescript",
"fixDefaultForCommonJS": true,
"jsx": false
},
"exports": {
".": {
"types": "./esm/index.d.ts"
}
},
"engines": {
"node": ">=12.0.0"
}
}