forked from chakra-ui/zag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.4 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
99
100
101
102
103
104
105
106
{
"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": "pnpm packages -- build",
"postbuild": "pnpm typedocs",
"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\"",
"vue-sfc": "pnpm --filter \"./examples/nuxt-ts\"",
"solid": "pnpm --filter \"./examples/solid-ts\"",
"start-react": "pnpm react dev",
"start-vue": "pnpm vue dev",
"start-vue-sfc": "pnpm vue-sfc 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",
"slack": "tsx scripts/slack.ts",
"sandbox": "tsx scripts/sandbox.ts",
"typedocs": "tsx scripts/typedocs.ts && pnpm prettier-fix",
"website": "pnpm --filter=./website"
},
"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.7.3",
"@babel/generator": "7.23.0",
"@babel/parser": "7.23.0",
"@babel/traverse": "7.23.0",
"@babel/types": "7.23.0",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@internationalized/date": "^3.5.0",
"@octokit/rest": "20.0.2",
"@playwright/test": "1.38.1",
"@swc/core": "1.3.91",
"@types/babel__traverse": "^7.20.2",
"@types/babel__generator": "^7.6.5",
"@types/node": "^20.6.5",
"@types/signale": "1.4.5",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"axe-core": "4.8.2",
"commitlint": "17.7.2",
"dotenv": "16.3.1",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "5.0.0",
"find-packages": "10.0.4",
"husky": "8.0.3",
"json-format-highlight": "1.0.4",
"lint-staged": "14.0.1",
"node-fetch": "^3.3.2",
"plop": "4.0.0",
"prettier": "3.0.3",
"signale": "1.4.0",
"ts-morph": "^20.0.0",
"tsup": "7.2.0",
"tsx": "3.13.0",
"typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-dts": "3.5.4",
"vitest": "^0.34.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}