@pandabox/panda-plugins
Version:
- `missing-css-warnings` - Logs a warning message when a CSS rule was used at runtime but couldn't be statically extracted - `strict-tokens-scope` - Enforce `strictTokens` only for a set of `TokenCategory` or style props - `strict-tokens-runtime` - Enfo
65 lines • 1.42 kB
JSON
{
"name": "@pandabox/panda-plugins",
"version": "0.0.8",
"exports": {
".": {
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"imports": {
"#pandabox/fixtures": "../fixtures/src/index.ts"
},
"dependencies": {
"postcss": "^8.4.35",
"@pandabox/postcss-plugins": "^0.0.2"
},
"devDependencies": {
"@pandacss/core": "^0.36.1",
"@pandacss/dev": "^0.36.1",
"@pandacss/node": "^0.36.1",
"@pandacss/types": "^0.36.1",
"cac": "^6.7.14",
"happy-dom": "^13.6.2",
"tsup": "^8.0.2",
"vitest": "^1.3.1"
},
"homepage": "https://astahmer.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/astahmer/pandabox.git",
"directory": "packages/panda-plugins"
},
"author": "Alexandre Stahmer",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"keywords": [
"pandacss",
"pandabox",
"panda",
"plugins",
"typesafety",
"typescript"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"typecheck": "tsc --noEmit",
"test": "bun ./test-cli.ts test",
"codegen": "bun ./test-cli.ts codegen"
}
}