-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 2.41 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cloakwp",
"version": "0.6.10",
"description": "Integrate WordPress with your decoupled JS front-end.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./auth": {
"require": "./dist/auth/index.js",
"import": "./dist/auth/index.js",
"types": "./dist/auth/index.d.ts"
},
"./blocks": {
"require": "./dist/blocks/index.js",
"import": "./dist/blocks/index.js",
"types": "./dist/blocks/index.d.ts"
},
"./cms": {
"require": "./dist/cms/index.js",
"import": "./dist/cms/index.js",
"types": "./dist/cms/index.d.ts"
},
"./editor": {
"require": "./dist/editor/index.js",
"import": "./dist/editor/index.js",
"types": "./dist/editor/index.d.ts"
},
"./preview": {
"require": "./dist/preview/index.js",
"import": "./dist/preview/index.js",
"types": "./dist/preview/index.d.ts"
},
"./rest": {
"require": "./dist/rest/index.js",
"import": "./dist/rest/index.js",
"types": "./dist/rest/index.d.ts"
},
"./sitemap": {
"require": "./dist/sitemap/index.js",
"import": "./dist/sitemap/index.js",
"types": "./dist/sitemap/index.d.ts"
}
},
"scripts": {
"dev": "tsc -p tsconfig.json -w --preserveWatchOutput",
"zzz-dev": "tsc-watch --onFailure \"echo Beep! Compilation Failed\" --noClear",
"build": "npm run build-ts",
"build-ts": "tsc-silent -p tsconfig.json --suppress @",
"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-js.git"
},
"keywords": [
"wordpress",
"wp",
"cloakwp",
"cloak",
"headless",
"nextjs",
"next",
"decoupled"
],
"author": "Kaelan Smith",
"license": "LGPL-3.0-only",
"bugs": {
"url": "https://github.com/cloak-labs/cloakwp-js/issues"
},
"homepage": "https://github.com/cloak-labs/cloakwp-js#readme",
"dependencies": {
"@cloakui/utils": "^0.1.4",
"@cloakwp/wpapi": "^2.0.2",
"cloakcms": "^0.3.0"
},
"devDependencies": {
"@types/node": "^18.18.1",
"tsc-watch": "^5.0.3",
"typescript": "^5.3.2"
},
"peerDependencies": {
"@cloakui/styles": ">= 0.3.x"
}
}