-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.89 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
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
{
"name": "primehooks",
"version": "1.4.7",
"description": "Modern, lightweight and performance-optimized React hooks library for building powerful web applications with ease.",
"license": "MIT",
"author": {
"name": "iPuppyYT",
"url": "https://github.com/ipuppyyt"
},
"type": "module",
"sideEffects": false,
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"prebuild": "tsc -p tsconfig.json --noEmit",
"build": "tsup && node scripts/copy-types.js",
"prerelease": "tsc -p tsconfig.json --noEmit",
"release": "tsup && node scripts/copy-types.js && node scripts/deploy-to-github.js && npm publish"
},
"keywords": [
"react",
"hooks",
"library",
"typescript",
"usehooks",
"customhooks"
],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipuppyyt/primehooks.git"
},
"bugs": {
"url": "https://github.com/ipuppyyt/primehooks/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ipuppyyt"
},
"homepage": "https://github.com/ipuppyyt/primehooks#readme",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": false
}
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/react": "^19.2.2",
"eslint-plugin-react-hooks": "^7.0.0",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"primehooks": "^1.4.7"
}
}