-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@r3lab/cms-api",
"version": "0.1.0",
"description": "CMS API client for R3Lab projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"cms",
"api",
"client"
],
"author": "R3Lab",
"license": "ISC",
"dependencies": {
"@tiptap/extension-heading": "^2.11.7",
"@tiptap/extension-image": "^2.11.7",
"@tiptap/extension-link": "^2.11.7",
"@tiptap/extension-text-align": "^2.11.7",
"@tiptap/extension-underline": "^2.11.7",
"@tiptap/react": "^2.11.7",
"@tiptap/starter-kit": "^2.11.7",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.6",
"next": "^15.2.4",
"next-safe-action": "^7.10.4",
"react": "^19.1.0",
"sonner": "^2.0.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"ts-jest": "^29.3.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}