forked from ycs77/headlessui-float
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.3 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
{
"name": "headlessui-float",
"version": "0.0.0",
"private": true,
"description": "Easily use Headless UI components with Floating UI (Popper.js)",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm-run-all -p build:*",
"build:react": "yarn react build",
"build:vue": "yarn vue build",
"watch": "npm-run-all -p watch:*",
"watch:react": "yarn react watch",
"watch:vue": "yarn vue watch",
"watch:example": "npm-run-all -p watch:example:*",
"watch:example:react": "yarn react:example dev --port=3011",
"watch:example:react-ts": "yarn react-ts:example dev --port=3012",
"watch:example:vue": "yarn vue:example dev --port=3013",
"watch:example:vue-ts": "yarn vue-ts:example dev --port=3014",
"react": "yarn workspace @headlessui-float/react",
"react:example": "yarn workspace headlessui-float-example-react",
"react-ts:example": "yarn workspace headlessui-float-example-react-ts",
"vue": "yarn workspace @headlessui-float/vue",
"vue:example": "yarn workspace headlessui-float-example-vue",
"vue-ts:example": "yarn workspace headlessui-float-example-vue-ts",
"lint": "eslint ."
},
"devDependencies": {
"@ycs77/eslint-config": "^0.1.3",
"eslint": "^8.20.0",
"npm-run-all": "^4.1.5"
}
}