-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "@aesthetic/style",
"version": "0.9.8",
"description": "A low-level, high-performance, atomic-based CSS-in-JS style engine.",
"keywords": [
"aesthetic",
"style",
"stylesheet",
"css",
"css-in-js",
"renderer",
"engine"
],
"repository": {
"type": "git",
"url": "[email protected]:aesthetic-suite/framework.git",
"directory": "packages/style"
},
"author": "Miles Johnson",
"license": "MIT",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./dts/index.d.ts",
"files": [
"dts/**/*.d.ts",
"esm/**/*.{js,map}",
"lib/**/*.{js,map}",
"server.d.ts",
"server.js",
"src/**/*.{ts,tsx,json}",
"test.d.ts",
"test.js"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"dependencies": {
"@aesthetic/types": "^0.6.7",
"@aesthetic/utils": "^0.8.4",
"sort-css-media-queries": "^2.0.3"
},
"devDependencies": {
"@aesthetic/addon-direction": "^0.4.7",
"@aesthetic/addon-vendor": "^0.3.8"
},
"packemon": {
"inputs": {
"index": "src/index.ts",
"server": "src/server.ts",
"test": "src/test.ts"
},
"platform": "browser"
}
}