forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "@pandacss/parser",
"version": "0.5.1",
"description": "The static parser for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format=esm,cjs --dts",
"build-fast": "tsup src/index.ts --format=esm,cjs --no-dts",
"dev": "pnpm build-fast --watch"
},
"dependencies": {
"@pandacss/extractor": "workspace:*",
"@pandacss/is-valid-prop": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/types": "workspace:*",
"@vue/compiler-sfc": "^3.3.4",
"lil-fp": "1.4.5",
"magic-string": "^0.30.0",
"ts-morph": "18.0.0",
"ts-pattern": "4.3.0"
},
"devDependencies": {
"@pandacss/fixture": "workspace:*",
"@pandacss/generator": "workspace:*",
"hookable": "5.5.3"
},
"files": [
"dist"
]
}