-
-
Notifications
You must be signed in to change notification settings - Fork 240
/
package.json
64 lines (64 loc) · 1.69 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
60
61
62
63
64
{
"name": "@pandacss/core",
"version": "0.51.1",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"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",
"build-fast": "tsup --no-dts",
"dev": "pnpm build-fast --watch"
},
"files": [
"dist"
],
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@csstools/postcss-cascade-layers": "4.0.6",
"@pandacss/is-valid-prop": "workspace:^",
"@pandacss/logger": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/token-dictionary": "workspace:*",
"@pandacss/types": "workspace:*",
"browserslist": "4.23.3",
"hookable": "5.5.3",
"lightningcss": "1.25.1",
"lodash.merge": "4.6.2",
"outdent": "0.8.0",
"postcss": "8.4.49",
"postcss-discard-duplicates": "7.0.1",
"postcss-discard-empty": "7.0.0",
"postcss-merge-rules": "7.0.4",
"postcss-minify-selectors": "7.0.4",
"postcss-nested": "6.0.1",
"postcss-normalize-whitespace": "7.0.0",
"postcss-selector-parser": "6.1.2",
"ts-pattern": "5.0.8"
},
"devDependencies": {
"@types/lodash.merge": "4.6.9"
}
}