-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "react-renderable",
"version": "1.0.6",
"description": "Declarative render primitives for React, all sharing one Renderable convention.",
"keywords": [
"react",
"renderable",
"components",
"conditional-rendering",
"portal",
"typescript"
],
"license": "MIT",
"author": "Roberto Attanasio",
"homepage": "https://dev.robertoattanasio.com/react-renderable",
"repository": {
"type": "git",
"url": "git+https://github.com/robertoattanasio/react-renderable.git"
},
"bugs": {
"url": "https://github.com/robertoattanasio/react-renderable/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"workspaces": [
"."
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"ts:check": "tsc --noEmit",
"build": "rm -rf dist && tsc",
"changeset:add": "changeset",
"changeset:bump": "changeset version",
"build:release": "npm run ts:check && npm run build && npm pack && changeset publish && git push --follow-tags"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1"
}
}