forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "@pandacss/node",
"version": "0.4.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"scripts": {
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
"build-fast": "tsup src/index.ts --format=cjs,esm --shims --no-dts",
"dev": "pnpm build-fast --watch"
},
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pandacss/config": "workspace:*",
"@pandacss/core": "workspace:*",
"@pandacss/error": "workspace:*",
"@pandacss/extractor": "workspace:*",
"@pandacss/generator": "workspace:*",
"@pandacss/is-valid-prop": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/parser": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/token-dictionary": "workspace:*",
"@pandacss/types": "workspace:*",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.12",
"file-size": "^1.0.0",
"filesize": "^10.0.7",
"fs-extra": "11.1.1",
"glob-parent": "^6.0.2",
"hookable": "5.5.3",
"is-glob": "^4.0.3",
"lil-fp": "1.4.5",
"lodash.merge": "4.6.2",
"look-it-up": "2.1.0",
"outdent": " ^0.8.0",
"pathe": "^1.1.1",
"pkg-types": "1.0.3",
"pluralize": "8.0.0",
"postcss": "8.4.24",
"preferred-pm": "^3.0.3",
"ts-morph": "18.0.0",
"ts-pattern": "4.3.0"
},
"devDependencies": {
"@pandacss/fixture": "workspace:*",
"@types/fs-extra": "11.0.1",
"@types/glob-parent": "^5.1.1",
"@types/is-glob": "^4.0.2",
"@types/lodash.merge": "4.6.7",
"@types/pluralize": "0.0.29",
"boxen": "^7.1.0"
}
}