-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
39 lines (39 loc) · 992 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
37
38
39
{
"name": "@pandacss/shared",
"version": "0.48.0",
"description": "Shared utilities for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/shared"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup --dts && tsx scripts/postbuild.ts",
"build-fast": "tsup --no-dts",
"dev": "tsup --no-dts --watch --onSuccess=\"tsx scripts/postbuild.ts\""
},
"files": [
"dist"
]
}