forked from juliencrn/usehooks-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.51 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
48
49
50
51
52
53
{
"name": "workspace",
"private": true,
"description": "React hook library, ready to use, written in Typescript.",
"author": "Julien CARON <juliencaron@protonmail.com>",
"homepage": "https://usehooks-ts.com",
"module": "true",
"keywords": [
"typescript",
"react",
"hooks"
],
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"clean": "rimraf .turbo && turbo run clean",
"format": "prettier --write \"**/*.{json,md,mdx,css,scss,yaml,yml}\"",
"lint": "turbo run lint",
"types-check": "turbo run types-check",
"update-testing-issue": "zx ./scripts/updateTestingIssue.mjs",
"update-readme": "zx ./scripts/updateReadme.mjs",
"copy-hooks": "rimraf -rf ./apps/www/generated && zx ./scripts/copyHooks.mjs",
"gen-hook": "turbo gen hook && pnpm format",
"changeset": "npx changeset",
"changeset-version": "npx changeset version",
"changeset-publish": "npx changeset publish"
},
"resolutions": {
"typescript": "^5.3.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.42.0",
"prettier": "^3.2.3",
"rimraf": "^5.0.5",
"turbo": "^1.11.3",
"zx": "^7.2.3"
},
"engines": {
"node": ">=16.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/juliencrn/usehooks-ts"
},
"bugs": {
"url": "https://github.com/juliencrn/usehooks-ts/issues"
}
}