forked from chakra-ui/zag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.25 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@zag-js/org",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/chakra-ui/zag.git"
},
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
"scripts": {
"packages": "pnpm --filter=./packages/** -r",
"build-fast": "pnpm packages -- build-fast",
"build": "pnpm packages -- build",
"start": "pnpm packages -- start",
"prepare": "husky install",
"sync-pkgs": "tsx scripts/sync-packages.ts",
"clean-pkgs": "pnpm -r exec rm -rf dist .swc *.log",
"clean": "pnpm clean-pkgs && rm -rf node_modules",
"react": "pnpm --filter \"./examples/next-ts\"",
"vue": "pnpm --filter \"./examples/vue-ts\"",
"solid": "pnpm --filter \"./examples/solid-ts\"",
"start-react": "pnpm react dev",
"start-vue": "pnpm vue dev",
"start-solid": "pnpm solid dev",
"pw-report": "playwright show-report e2e/report",
"pw-test": "playwright test",
"pw-test-debug": "playwright test --debug",
"e2e-react": "FRAMEWORK=react playwright test",
"e2e-vue": "FRAMEWORK=vue playwright test",
"e2e-solid": "FRAMEWORK=solid playwright test",
"generate-machine": "plop machine && pnpm sync-pkgs",
"generate-util": "plop utility && pnpm sync-pkgs",
"typecheck": "pnpm packages -- typecheck",
"prettier": "prettier --check packages/**/*",
"prettier-fix": "prettier --write packages/**/*",
"lint": "eslint packages --ext .ts",
"version": "changeset version",
"release": "changeset publish",
"test": "vitest",
"visualize": "tsx scripts/visualize.ts --all",
"changelog": "tsx scripts/changelog.ts",
"changelog-latest": "tsx scripts/changelog.ts --latest",
"changelog-commit": "git add . && git commit -am 'docs: add changelog' && git push",
"changelog-format": "prettier --write .changelog",
"slack": "tsx scripts/slack.ts",
"sandbox": "tsx scripts/sandbox.ts"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": "prettier --write",
"**/*.machine.ts": [
"pnpm visualize",
"git add .xstate/*.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@axe-core/playwright": "4.6.0",
"@babel/generator": "7.20.14",
"@babel/parser": "7.20.15",
"@babel/traverse": "7.20.13",
"@babel/types": "7.20.7",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.0",
"@commitlint/cli": "17.4.3",
"@commitlint/config-conventional": "17.4.3",
"@octokit/rest": "19.0.7",
"@playwright/test": "1.30.0",
"@swc/core": "1.3.35",
"@types/node": "^18.13.0",
"@types/signale": "1.4.4",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"axe-core": "4.6.3",
"commitlint": "17.4.3",
"dotenv": "16.0.3",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"find-packages": "10.0.4",
"husky": "8.0.3",
"json-format-highlight": "1.0.4",
"lint-staged": "13.1.1",
"node-fetch": "^3.3.0",
"playwright": "1.30.0",
"plop": "3.1.2",
"prettier": "2.8.4",
"signale": "1.4.0",
"tsup": "6.6.2",
"tsx": "3.12.3",
"typescript": "4.9.5",
"vitest": "^0.28.5"
}
}