-
-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@pandacss/studio",
"version": "1.8.1",
"description": "The automated token documentation for Panda CSS",
"main": "dist/studio.js",
"module": "dist/studio.mjs",
"types": "dist/studio.d.ts",
"sideEffects": false,
"homepage": "https://panda-css.com",
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/panda.git",
"directory": "packages/studio"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/studio.d.ts",
"require": "./dist/studio.js",
"import": {
"types": "./dist/studio.d.mts",
"default": "./dist/studio.mjs"
}
}
},
"scripts": {
"panda": "node ../cli/bin.js",
"codegen": "node ../cli/bin.js codegen",
"build": "tsup scripts --format=esm,cjs --dts --no-splitting --shims",
"postbuild": "pnpm panda",
"build-fast": "tsup scripts --format=esm,cjs --no-dts --no-splitting --shims",
"dev": "pnpm build-fast --watch scripts",
"dev:panda": "node ../cli/bin.js --clean --watch",
"dev:astro": "astro dev",
"start": "concurrently \"pnpm dev:panda\" \"pnpm dev:astro\""
},
"files": [
"dist",
"src",
"public",
"styled-system",
"tsconfig.json",
"*.ts",
"*.mjs"
],
"keywords": [
"panda",
"studio",
"design tokens",
"documentation"
],
"author": "Segun Adebayo <joseshegs@gmail.com>",
"license": "MIT",
"dependencies": {
"@astrojs/react": "4.4.2",
"@nanostores/react": "^1.0.0",
"@pandacss/astro-plugin-studio": "workspace:*",
"@pandacss/config": "workspace:*",
"@pandacss/logger": "workspace:*",
"@pandacss/shared": "workspace:*",
"@pandacss/token-dictionary": "workspace:*",
"@pandacss/types": "workspace:*",
"astro": "5.17.1",
"nanostores": "^1.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"vite": "7.3.1"
},
"devDependencies": {
"@testing-library/react": "16.3.2",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.3"
}
}