forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.56 KB
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
{
"name": "@pandacss/config",
"version": "0.7.0",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./merge": {
"types": "./dist/merge-config.d.ts",
"require": "./dist/merge-config.js",
"import": "./dist/merge-config.mjs"
},
"./ts-path": {
"types": "./dist/resolve-ts-path-pattern.d.ts",
"require": "./dist/resolve-ts-path-pattern.js",
"import": "./dist/resolve-ts-path-pattern.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pnpm tsup src/index.ts src/merge-config.ts src/resolve-ts-path-pattern.ts --format=esm,cjs --shims --dts",
"build-fast": "pnpm tsup src/index.ts src/merge-config.ts src/resolve-ts-path-pattern.ts --format=esm,cjs --shims --no-dts",
"dev": "pnpm build-fast --watch"
},
"files": [
"dist"
],
"dependencies": {
"@pandacss/error": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/preset-base": "workspace:*",
"@pandacss/preset-panda": "workspace:*",
"@pandacss/types": "workspace:*",
"bundle-n-require": "^1.0.1",
"escalade": "3.1.1",
"jiti": "^1.19.1",
"merge-anything": "^5.1.7",
"typescript": "^5.1.6"
},
"devDependencies": {
"pkg-types": "1.0.3"
}
}