-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.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
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
{
"name": "mystical",
"description": "CSS prop constraint based styling",
"version": "16.2.0",
"author": "David Burles",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dburles/mystical.git"
},
"homepage": "https://github.com/dburles/mystical#readme",
"bugs": "https://github.com/dburles/mystical/issues",
"keywords": [
"mystical",
"css",
"css-in-js",
"styles",
"react"
],
"engines": {
"node": ">= 20.0.0"
},
"sideEffects": false,
"files": [
"createElement.mjs",
"darkColorMode.mjs",
"Global.d.mts",
"Global.mjs",
"index.d.mts",
"jsx-dev-runtime.d.mts",
"jsx-dev-runtime.mjs",
"jsx-namespace.d.mts",
"jsx-runtime.d.mts",
"jsx-runtime.mjs",
"MysticalProvider.mjs",
"private/css.mjs",
"private/customProperties.mjs",
"private/deepmerge.mjs",
"private/facepaint.mjs",
"private/forceDarkModeAttribute.mjs",
"private/get.mjs",
"private/isDevelopment.mjs",
"private/isObject.mjs",
"private/isServer.mjs",
"private/merge.mjs",
"private/mergeModifiers.mjs",
"private/negativeTransform.mjs",
"private/positiveOrNegative.mjs",
"private/shorthandProperties.mjs",
"private/themeTokens.mjs",
"private/transformColors.mjs",
"private/wrapCreateElement.mjs",
"useModifiers.mjs",
"useMystical.mjs",
"useTheme.mjs"
],
"exports": {
".": {
"types": "./index.d.mts"
},
"./createElement.mjs": "./createElement.mjs",
"./darkColorMode.mjs": "./darkColorMode.mjs",
"./defaultColorMode.mjs": "./defaultColorMode.mjs",
"./Global.mjs": "./Global.mjs",
"./jsx-dev-runtime": "./jsx-dev-runtime.mjs",
"./jsx-runtime": "./jsx-runtime.mjs",
"./MysticalProvider.mjs": "./MysticalProvider.mjs",
"./package.json": "./package.json",
"./useModifiers.mjs": "./useModifiers.mjs",
"./useMystical.mjs": "./useMystical.mjs",
"./useTheme.mjs": "./useTheme.mjs"
},
"scripts": {
"test": "npm run test:lint && npm run test:prettier && npm run test:unit",
"test:lint": "eslint .",
"test:prettier": "prettier -c .",
"test:unit": "node --test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"global-jsdom": "^24.0.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^18.0.0"
}
}