-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "ts-hover-prettify",
"version": "1.1.0",
"description": "Utility to make the hover of a typescript object more readable",
"repository": "https://github.com/MarcoAntolini/ts-hover-prettify",
"homepage": "https://github.com/MarcoAntolini/ts-hover-prettify#readme",
"author": "Marco Antolini",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"t-build": "tsup src/index.ts --format cjs,esm --dts-resolve --minify --sourcemap --clean",
"t-lint": "tsc",
"t-release": "pnpm lint && pnpm build && changeset publish",
"build": "turbo t-build",
"lint": "turbo t-lint",
"release": "turbo t-release"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"tsup": "^7.2.0",
"turbo": "^1.10.14",
"typescript": "^5.2.2"
},
"prettier": {
"arrowParens": "always",
"trailingComma": "all",
"semi": true,
"singleQuote": false,
"printWidth": 120,
"tabWidth": 2,
"useTabs": true
}
}