-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.45 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
{
"name": "panda-vscode",
"version": "0.0.1",
"private": true,
"description": "The repository of css panda",
"scripts": {
"prepare": "yarn build-fast",
"dev": "yarn workspaces foreach -pA --exclude 'sandbox-vite' --exclude 'panda-vscode' run dev",
"build-fast": "yarn workspaces foreach -pA --exclude 'sandbox-vite' --exclude 'panda-vscode' run build-fast",
"build": "yarn workspaces foreach -A --exclude 'sandbox-vite' --exclude 'panda-vscode' run build",
"test": "vitest",
"lint": "eslint packages --ext .ts",
"fmt": "prettier --write packages",
"typecheck": "tsc --noEmit",
"release": "changeset publish",
"release-dev": "changeset version --snapshot dev && changeset publish --tag dev"
},
"keywords": [],
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"prettier": "^3.2.5",
"tsup": "8.0.2",
"typescript": "5.4.2",
"vitest": "1.4.0"
},
"resolutions": {
"panda-css-vscode/esbuild": "npm:[email protected]",
"panda-css-vscode/lightningcss": "npm:[email protected]"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"sandbox/**"
],
"devDependencies": {
"@types/eslint": "^8.56.6",
"eslint": "^8.57.0"
}
}