-
-
Notifications
You must be signed in to change notification settings - Fork 258
/
Copy pathpackage.json
90 lines (90 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@pandacss/config",
"version": "0.53.2",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/config"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./merge": {
"source": "./src/merge-config.ts",
"types": "./dist/merge-config.d.ts",
"require": "./dist/merge-config.js",
"import": {
"types": "./dist/merge-config.d.mts",
"default": "./dist/merge-config.mjs"
}
},
"./diff": {
"source": "./src/diff-config.ts",
"types": "./dist/diff-config.d.ts",
"require": "./dist/diff-config.js",
"import": {
"types": "./dist/diff-config.d.mts",
"default": "./dist/diff-config.mjs"
}
},
"./ts-path": {
"source": "./src/resolve-ts-path-pattern.ts",
"types": "./dist/resolve-ts-path-pattern.d.ts",
"require": "./dist/resolve-ts-path-pattern.js",
"import": {
"types": "./dist/resolve-ts-path-pattern.d.mts",
"default": "./dist/resolve-ts-path-pattern.mjs"
}
},
"./utils": {
"source": "./src/utils.ts",
"types": "./dist/utils.d.ts",
"require": "./dist/utils.js",
"import": {
"types": "./dist/utils.d.mts",
"default": "./dist/utils.mjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup --tsconfig tsconfig.build.json --dts",
"build-fast": "tsup --no-dts",
"dev": "pnpm build-fast --watch"
},
"files": [
"dist"
],
"dependencies": {
"@pandacss/logger": "workspace:*",
"@pandacss/preset-base": "workspace:*",
"@pandacss/preset-panda": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/types": "workspace:*",
"bundle-n-require": "1.1.2",
"escalade": "3.1.2",
"merge-anything": "5.1.7",
"microdiff": "1.3.2",
"typescript": "5.6.2"
},
"devDependencies": {
"pkg-types": "1.0.3"
}
}