-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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
50
51
52
53
{
"name": "@thewebforge/usewp",
"version": "1.0.0",
"description": "A collection of useful React hooks created especially to be used in your WordPress Theme or Plugin development project.",
"author": "Cédric Bontems",
"license": "MIT",
"type": "module",
"module": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/thewebforge/usewp.git"
},
"keywords": [
"hooks",
"react",
"wordpress"
],
"bugs": {
"url": "https://github.com/thewebforge/usewp/issues"
},
"homepage": "https://usewp.thewebforge.dev",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"./dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"bump": "cz bump",
"dev": "rm -rf dist && tsc --watch",
"npmpublish": "npm publish --access=public",
"release": "bun run build && bun run bump && bun run npmpublish"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@wordpress/element": "^5.32.0"
},
"peerDependencies": {
"typescript": "^5.0.0",
"@wordpress/element": "^5.26.0"
},
"dependencies": {
"@wordpress/compose": "^6.32.0",
"@wordpress/data": "^9.25.0",
"@wordpress/react-i18n": "^3.53.0"
}
}