forked from juliencrn/usehooks-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"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": "turbo run clean",
"format": "prettier --write \"**/*.{json,md,mdx,css,scss,yaml,yml}\"",
"lint": "turbo run lint",
"types-check": "turbo run types-check",
"test:coverage": "zx ./scripts/coverage.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"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"all-contributors-cli": "^6.20.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"turbo": "^1.9.9",
"zx": "^7.2.2"
},
"engines": {
"node": ">=16.15.0"
},
"repository": {
"type": "git",
"url": "https://github.com/juliencrn/usehooks-ts"
},
"bugs": {
"url": "https://github.com/juliencrn/usehooks-ts/issues"
}
}