-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@m10c/content-elements",
"version": "0.0.2",
"description": "CMS content elements bundle (block editor, SEO, variants)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/m10c/content-elements.git"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.js"
}
},
"typesVersions": {
"*": {
"hooks": [
"./dist/hooks.d.ts"
]
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "tsup",
"ts": "tsc --noEmit",
"lint": "eslint src/",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
"pretty:check": "prettier --check \"src/**/*.{ts,tsx}\""
},
"peerDependencies": {
"@mui/icons-material": ">=5.0.0",
"@mui/material": ">=5.0.0",
"date-fns": ">=2.0.0",
"@m10c/mui-kit": "*",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-typed-form": ">=0.3.0"
},
"peerDependenciesMeta": {
"@mui/material": {
"optional": true
},
"@mui/icons-material": {
"optional": true
},
"react-typed-form": {
"optional": true
},
"date-fns": {
"optional": true
},
"@m10c/mui-kit": {
"optional": true
}
},
"devDependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@eslint/js": "^9",
"@mui/icons-material": "^6.4.7",
"@mui/material": "^6.4.7",
"@types/react": "18",
"@types/react-dom": "18",
"date-fns": "^2.30.0",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-plugin-react-hooks": "^5",
"@m10c/mui-kit": "^0.0.1",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-typed-form": "0.3.6",
"tsup": "^8.4.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8"
},
"files": [
"dist"
]
}