-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "@oakjs/react",
"version": "3.11.2",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-react.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/p3ol/oak.git",
"directory": "packages/oak"
},
"author": "Ugo Stephant <[email protected]>",
"contributors": [
"Maxime Da Silva <[email protected]>"
],
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@floating-ui/react": "0.27.1",
"@junipero/hooks": "3.10.0",
"@junipero/react": "3.10.1",
"@junipero/transitions": "3.10.1",
"uuid": "11.0.3"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"build": "yarn clean && yarn build:code && yarn build:dts",
"build:code": "yarn run -T rollup --configPlugin @rollup/plugin-swc -c",
"build:dts": "yarn run -T tsc --project ./tsconfig.build.json",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/oak-react.cjs.js",
"types": "./dist/types/index.d.ts"
},
"./addons": {
"import": "./dist/esm/addons.js",
"require": "./dist/oak-react.cjs.js",
"types": "./dist/types/addons.d.ts"
},
"./options": {
"import": "./dist/esm/options.js",
"require": "./dist/oak-react.cjs.js",
"types": "./dist/types/options.d.ts"
}
},
"gitHead": "d75c061fe25d641c27268b3995ede1b047369787"
}