-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
75 lines (75 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@pandacss/dev",
"version": "0.48.0",
"description": "The user facing package for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"bin": {
"panda": "bin.js",
"pandacss": "bin.js"
},
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./presets": {
"source": "./src/presets.ts",
"types": "./dist/presets.d.ts",
"require": "./dist/presets.js",
"import": {
"types": "./dist/presets.d.mts",
"default": "./dist/presets.mjs"
}
},
"./postcss": "./postcss.js",
"./package.json": "./package.json"
},
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/cli"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src --format=esm,cjs --dts --no-splitting --shims",
"build-fast": "tsup src --format=esm,cjs --no-dts --no-splitting --shims",
"dev": "pnpm build-fast --watch src"
},
"files": [
"dist",
"bin",
"app",
"bin.js",
"*.d.ts",
"postcss.js"
],
"dependencies": {
"@clack/prompts": "0.7.0",
"@pandacss/config": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/node": "workspace:*",
"@pandacss/postcss": "workspace:*",
"@pandacss/preset-panda": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/token-dictionary": "workspace:*",
"@pandacss/types": "workspace:*",
"cac": "6.7.14"
},
"devDependencies": {
"@types/update-notifier": "6.0.8",
"kleur": "4.1.5",
"update-notifier": "7.0.0"
}
}