-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
79 lines (79 loc) · 2.18 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
{
"name": "@pandacss/node",
"version": "0.48.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]>",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup --tsconfig tsconfig.build.json src/index.ts --format=cjs,esm --shims --dts",
"build-fast": "tsup --tsconfig tsconfig.build.json src/index.ts --format=cjs,esm --shims --no-dts",
"dev": "pnpm build-fast --watch"
},
"files": [
"dist"
],
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/node"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@pandacss/config": "workspace:*",
"@pandacss/core": "workspace:*",
"@pandacss/extractor": "workspace:*",
"@pandacss/generator": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/parser": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/token-dictionary": "workspace:*",
"@pandacss/types": "workspace:*",
"browserslist": "4.23.3",
"chokidar": "3.6.0",
"fast-glob": "3.3.2",
"file-size": "1.0.0",
"filesize": "10.1.6",
"fs-extra": "11.2.0",
"glob-parent": "6.0.2",
"is-glob": "4.0.3",
"lodash.merge": "4.6.2",
"look-it-up": "2.1.0",
"outdent": " ^0.8.0",
"package-manager-detector": "0.1.0",
"perfect-debounce": "1.0.0",
"pkg-types": "1.0.3",
"pluralize": "8.0.0",
"postcss": "8.4.49",
"prettier": "3.2.5",
"ts-morph": "21.0.1",
"ts-pattern": "5.0.8",
"tsconfck": "3.0.2"
},
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/glob-parent": "5.1.3",
"@types/is-glob": "4.0.4",
"@types/lodash.merge": "4.6.9",
"@types/pluralize": "0.0.33",
"boxen": "7.1.1",
"p-limit": "5.0.0"
}
}