-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.58 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@cloakwp/react",
"version": "0.2.4",
"description": "CloakWP utilities + components for the React ecosystem.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"require": "./dist/*.js",
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"scripts": {
"dev": "tsc -p tsconfig.json -w --preserveWatchOutput",
"build": "npm run build-ts",
"build-ts": "tsc -p tsconfig.json",
"clean": "rm -rf .turbo && rm -rf dist && npm run clean:modules",
"clean:modules": "rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloak-labs/cloakwp-react.git"
},
"keywords": [
"wordpress",
"wp",
"cloakwp",
"cloak",
"react",
"headless",
"decoupled"
],
"author": "Kaelan Smith",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/cloak-labs/cloakwp-react/issues"
},
"homepage": "https://github.com/cloak-labs/cloakwp-react#readme",
"devDependencies": {
"@types/node": "^18.18.1",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"tsc-watch": "^5.0.3",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@cloakui/styles": ">= 0.3.x",
"cloakwp": ">= 0.6.x",
"html-react-parser": "5.x",
"react": ">= 17.0.2",
"react-dom": ">= 17.0.2"
},
"dependencies": {
"@cloakui/react-primitives": "^0.3.3"
},
"publishConfig": {
"access": "public"
}
}