-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "@pandacss/parser",
"version": "0.51.1",
"description": "The static parser for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": "./dist/index.js"
}
},
"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/parser"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format=esm,cjs --dts",
"build-fast": "tsup src/index.ts --format=esm,cjs --no-dts",
"dev": "pnpm build-fast --watch"
},
"dependencies": {
"@pandacss/config": "workspace:^",
"@pandacss/core": "workspace:^",
"@pandacss/extractor": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/types": "workspace:*",
"@vue/compiler-sfc": "3.4.19",
"magic-string": "0.30.17",
"ts-morph": "24.0.0",
"ts-pattern": "5.0.8"
},
"devDependencies": {
"@pandacss/generator": "workspace:*",
"@vue/compiler-core": "3.4.19"
},
"files": [
"dist"
]
}