-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "@codiume/hooks",
"version": "1.0.0",
"description": "A collection of reusable react hooks for state and UI management",
"homepage": "https://github.com/codiume/hooks.git",
"keywords": ["hooks", "library", "react", "react-hooks", "state"],
"author": "MHD <m@codiume.com>",
"contributors": [
{
"name": "MHD",
"url": "https://x.com/the_dijkstra"
}
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"prebuild": "pnpm check-lint && pnpm check-types",
"build": "tsdown",
"postbuild": "pnpm check-exports",
"test": "vitest test",
"lint": "biome lint --write .",
"format": "biome format --write .",
"check-lint": "biome check src",
"check-exports": "attw --pack .",
"check-types": "tsc",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm run format",
"changeset:publish": "pnpm build && changeset publish"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codiume/hooks.git"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^16.3.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^29.0.1",
"tsdown": "^0.21.4",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
}
}