forked from chakra-ui/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 815 Bytes
/
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
{
"name": "@pandacss/extractor",
"version": "0.15.0",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Segun Adebayo <[email protected]>",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
"build-fast": "tsup src/index.ts --format=cjs,esm --shims --no-dts",
"dev": "pnpm build-fast --watch",
"format": "prettier --write \"./{src,tests}/**/*\"",
"test": "vitest",
"test:ci": "vitest run",
"lint:ts": "tsc --noEmit"
},
"files": [
"dist"
],
"dependencies": {
"lil-fp": "1.4.5",
"ts-evaluator": "^1.1.0",
"ts-morph": "19.0.0",
"ts-pattern": "5.0.4"
}
}