-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2 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": "panda-plugin-static-extract",
"version": "0.1.0",
"description": "Auto-generate Panda CSS staticCss values by scanning component-boundary usage (.raw()), with watch mode and zero-config monorepo support.",
"license": "MIT",
"engines": {
"node": ">=22"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/HashemKhalifa/panda-plugin-static-extract.git"
},
"homepage": "https://github.com/HashemKhalifa/panda-plugin-static-extract#readme",
"bugs": {
"url": "https://github.com/HashemKhalifa/panda-plugin-static-extract/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"panda-static-extract": "./dist/cli/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify": "pnpm typecheck && pnpm test && pnpm build",
"release": "semantic-release",
"lint": "echo \"No lint config yet\""
},
"keywords": [
"panda",
"pandacss",
"staticcss",
"plugin",
"css"
],
"peerDependencies": {
"@pandacss/dev": ">=0.36.0",
"@pandacss/types": ">=0.36.0"
},
"dependencies": {
"@swc/core": "^1.7.47"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^22.13.14",
"conventional-changelog-conventionalcommits": "^9.1.0",
"semantic-release": "^25.0.3",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}