-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
78 lines (78 loc) · 2.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "panda",
"version": "0.0.1",
"private": true,
"description": "The repository of css panda",
"scripts": {
"playground": "pnpm --filter=./playground",
"build:playground": "pnpm --filter {./playground}... build",
"prepare": "husky && pnpm build-fast",
"dev": "pnpm --parallel --filter=./packages/** dev",
"build-fast": "pnpm -r --parallel --filter=./packages/** build-fast",
"build": "pnpm -r --filter=./packages/** build",
"check": "pnpm build && pnpm typecheck && pnpm lint && pnpm test run",
"clean": "pnpm -r --parallel exec rimraf dist .turbo *.log",
"reset": "pnpm -r --parallel exec rimraf node_modules && rimraf node_modules",
"test:import-map": "cd packages/config/__tests__/samples/ts-import-map && pnpm test && cd ../ts-import-map-one-source && pnpm test",
"test": "vitest",
"codegen": "pnpm --filter=./sandbox/codegen",
"test:codegen": "pnpm codegen test && pnpm codegen typecheck",
"test-watch": "vitest --watch -u",
"lint": "eslint packages --ext .ts",
"prettier": "prettier --check packages",
"prettier-fix": "prettier --write packages",
"typecheck": "tsc --noEmit",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev",
"prepare-studio": "pnpm --filter=./packages/studio codegen",
"build-studio": "pnpm --filter=./sandbox/vite-ts exec pnpm panda studio --build",
"deploy-studio": "pnpm prepare-studio && pnpm build-studio",
"serve-studio": "npx serve ./sandbox/vite-ts/panda-static",
"website": "pnpm --filter=./website",
"mdx-check": "mdx-local-link-checker docs && mdx-local-link-checker website/pages/docs"
},
"keywords": [],
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@projectwallace/format-css": "^1.4.3",
"chokidar": "3.6.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"happy-dom": "15.10.2",
"husky": "9.0.11",
"lint-staged": "15.2.10",
"mdx-local-link-checker": "2.1.1",
"rimraf": "5.0.10",
"ts-morph": "21.0.1",
"tsup": "8.0.2",
"tsx": "4.7.1",
"typescript": "5.3.3",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.5.0"
},
"devDependencies": {
"@types/eslint": "8.56.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.2.5"
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"pnpm prepare-studio",
"pnpm prettier-fix",
"git add --all packages/studio/"
]
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@swc/helpers@~0.4": "0.4.36"
}
}
}