forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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.31.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.22.2",
"chokidar": "^3.5.3",
"fast-glob": "^3.3.1",
"file-size": "^1.0.0",
"filesize": "^10.0.8",
"fs-extra": "11.1.1",
"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",
"perfect-debounce": "^1.0.0",
"pkg-types": "1.0.3",
"pluralize": "8.0.0",
"postcss": "^8.4.35",
"preferred-pm": "^3.0.3",
"prettier": "^2.8.8",
"ts-morph": "19.0.0",
"ts-pattern": "5.0.5",
"tsconfck": "^2.1.2"
},
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/glob-parent": "^5.1.1",
"@types/is-glob": "^4.0.2",
"@types/lodash.merge": "4.6.8",
"@types/pluralize": "0.0.33",
"boxen": "^7.1.1",
"p-limit": "^4.0.0"
}
}