-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
{
"name": "@gympass/yoga-system",
"version": "0.25.0",
"description": "A package to help make UI components, libraries, and tools as interoperable as possible.",
"keywords": [
"design-system",
"react",
"gympass"
],
"homepage": "https://gympass.github.io/yoga/",
"license": "MIT",
"main": "./src",
"types": "./src",
"repository": {
"type": "git",
"url": "git+https://github.com/Gympass/yoga.git"
},
"scripts": {
"build": "yarn build:types && yarn build:cjs && yarn build:esm",
"build:types": "tsup --outDir dist/typings --dts-only",
"build:cjs": "tsup --outDir dist/cjs --format=cjs",
"build:esm": "tsup --format=esm --legacy-output",
"prebuild": "rm -rf ./dist",
"prepublishOnly": "node ../../scripts/prepublish.js"
},
"bugs": {
"url": "https://github.com/Gympass/yoga/issues"
},
"dependencies": {
"lodash.get": "^4.4.2"
},
"devDependencies": {
"styled-components": "^4.4.0"
},
"peerDependencies": {
"styled-components": "^4.4.0"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"tsup": {
"entry": [
"src/index.ts",
"src/**/*.(t|j)s",
"!src/**/*.test.(t|j)s"
],
"splitting": false,
"bundle": false
}
}