This repository was archived by the owner on Mar 13, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.18 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.18 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
{
"name": "@localess/react",
"version": "0.9.4",
"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-react",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Lessify/localess-react.git"
},
"bugs": {
"url": "https://github.com/Lessify/localess-react/issues"
},
"type": "module",
"private": false,
"license": "MIT",
"workspaces": [
"packages/*",
"playgrounds/*"
],
"scripts": {
"build": "npm run build:react",
"build:react": "npm run build --workspace=@localess/react"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19",
"react-dom": "^17 || ^18 || ^19"
},
"dependencies": {
"@localess/js-client": "0.9.1",
"@tiptap/static-renderer": "^3.20.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 20.0.0"
}
}