-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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
{
"name": "@aesthetic/core",
"version": "0.11.1",
"description": "Aesthetic is a powerful type-safe, framework agnostic, CSS-in-JS library for styling components.",
"keywords": [
"aesthetic",
"components",
"style",
"css",
"css-in-js"
],
"repository": {
"type": "git",
"url": "git@github.com:aesthetic-suite/framework.git",
"directory": "packages/core"
},
"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}",
"src/**/*.{ts,tsx,json}",
"test.d.ts",
"test.js"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aesthetic/system": "^0.9.10",
"@aesthetic/types": "^0.6.7",
"@aesthetic/utils": "^0.8.4"
},
"devDependencies": {
"@aesthetic/addon-direction": "^0.4.7",
"@aesthetic/addon-vendor": "^0.3.8",
"@aesthetic/style": "^0.9.8"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"packemon": {
"inputs": {
"index": "src/index.ts",
"test": "src/test.ts"
},
"platform": "browser"
}
}