-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "ts-retype",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"bin": "pnpm nx bin @ts-retype/bin",
"build": "pnpm nx run-many -t build",
"bump:bin": "pnpm --filter @ts-retype/dev run-bump -x --app bin --level dev",
"clean": "rm -rf .nx && pnpm nx run-many -t clean",
"docs": "pnpm nx run @ts-retype/doc:build",
"lint": "eslint --cache --fix --max-warnings=0 .",
"postinstall": "husky init && echo \"pnpm lint-staged\" > .husky/pre-commit",
"prepare": "husky",
"publish": "pnpm nx run-many -t publish",
"compile": "pnpm nx run-many -t compile",
"test": "pnpm nx run-many -t test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nx": "18.0.0",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-visualizer": "^5.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --cache --fix --max-warnings=0"
]
}
}