-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "naven",
"description": "React based CSS-in-JS styling framework.",
"version": "0.0.0-development",
"repository": "github:tobua/naven",
"homepage": "https://naven-documentation.vercel.app",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"build": "padua build",
"start": "padua watch",
"test": "vitest run"
},
"padua": {
"tsconfig": {
"include": [
"./declarations.d.ts"
]
},
"esbuild": {
"external": [
"naven"
]
},
"entry": "feature/*"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.19.10",
"@codesandbox/sandpack-themes": "^2.0.21",
"@floating-ui/react": "^0.27.2",
"@stitches/react": "^1.2.8",
"@types/react": "^19.0.2",
"body-scroll-lock": "^4.0.0-beta.0",
"fast-deep-equal": "^3.1.3",
"laier": "^1.2.3",
"memoize-one": "^6.0.0",
"object-assign-deep": "^0.4.0",
"react-datepicker": "^7.5.0",
"react-select": "^5.9.0",
"throttle-debounce": "^5.0.2",
"wasser": "^2.6.0"
},
"devDependencies": {
"@testing-library/react": "^16.1.0",
"@types/body-scroll-lock": "^3.1.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/object-assign-deep": "^0.4.3",
"@types/react-datepicker": "^7.0.0",
"@types/react-dom": "^19.0.2",
"@types/throttle-debounce": "^5.0.2",
"jest-environment-jsdom": "^29.7.0",
"padua": "^4.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": ">= 18"
},
"trustedDependencies": [
"padua"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./Code": {
"types": "./dist/feature/Code.d.ts",
"default": "./dist/feature/Code.js"
},
"./Date": {
"types": "./dist/feature/Date.d.ts",
"default": "./dist/feature/Date.js"
},
"./Dropdown": {
"types": "./dist/feature/Dropdown.d.ts",
"default": "./dist/feature/Dropdown.js"
},
"./Tooltip": {
"types": "./dist/feature/Tooltip.d.ts",
"default": "./dist/feature/Tooltip.js"
}
},
"source": "./index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"ui",
"ui-framework",
"react",
"css-in-js",
"stitches"
],
"prettier": "padua/configuration/.prettierrc.json",
"eslintConfig": {
"extends": "./node_modules/padua/configuration/eslint.cjs",
"rules": {
"prefer-arrow-callback": 0,
"react/function-component-definition": 0
}
},
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">= 18"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@stitches/[email protected]": "patches/@stitches%[email protected]"
}
}