-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "@gympass/yoga-common",
"version": "1.4.1",
"description": "Shared resources between packages",
"homepage": "https://github.com/Gympass/yoga",
"license": "MIT",
"main": "src/index.ts",
"types": "src/index.ts",
"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"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gympass/yoga.git"
},
"bugs": {
"url": "https://github.com/Gympass/yoga/issues"
},
"tsup": {
"entry": [
"src/index.ts",
"src/**/*.ts"
],
"splitting": false,
"bundle": false
}
}