-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.02 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
70
71
72
73
74
75
76
77
78
{
"name": "@localess/react",
"version": "3.0.0",
"description": "ReactJS JavaScript/TypeScript SDK for Localess's API.",
"keywords": [
"localess",
"sdk",
"api",
"client",
"react",
"javascript",
"typescript"
],
"author": "Lessify",
"homepage": "https://github.com/Lessify/localess-js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Lessify/localess-js.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/Lessify/localess-js/issues"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"private": false,
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"dependencies": {
"@localess/client": "*",
"@tiptap/static-renderer": "^3.20.1",
"@tiptap/html": "^3.20.1",
"@tiptap/extension-bold": "^3.20.1",
"@tiptap/extension-italic": "^3.20.1",
"@tiptap/extension-strike": "^3.20.1",
"@tiptap/extension-underline": "^3.20.1",
"@tiptap/extension-document": "^3.20.1",
"@tiptap/extension-text": "^3.20.1",
"@tiptap/extension-paragraph": "^3.20.1",
"@tiptap/extension-history": "^3.20.1",
"@tiptap/extension-list-item": "^3.20.1",
"@tiptap/extension-bullet-list": "^3.20.1",
"@tiptap/extension-ordered-list": "^3.20.1",
"@tiptap/extension-code": "^3.20.1",
"@tiptap/extension-code-block-lowlight": "^3.20.1",
"@tiptap/extension-link": "^3.20.1",
"@tiptap/extension-heading": "^3.20.1"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/node": "^20",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 20.0.0"
}
}