-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 loc) · 1.72 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
{
"name": "headlessui-float",
"type": "module",
"version": "0.0.0",
"private": true,
"description": "Easily use Headless UI components with Floating UI (Popper.js)",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "run-s build:*",
"build:react": "yarn react build",
"build:vue": "yarn vue build",
"build:nuxt": "yarn nuxt build",
"watch": "run-p watch:*",
"watch:react": "yarn react watch",
"watch:vue": "yarn vue watch",
"watch:example": "run-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",
"test": "run-s test:unit test:functional",
"test:unit": "run-s test:unit:*",
"test:unit:react": "yarn react test:unit --run",
"test:unit:vue": "yarn vue test:unit --run",
"test:functional": "run-s test:functional:*",
"test:functional:react": "yarn react test:functional",
"test:functional:vue": "yarn vue test:functional",
"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",
"nuxt": "yarn workspace @headlessui-float/nuxt",
"lint": "eslint ."
},
"devDependencies": {
"@ycs77/eslint-config": "^2.4.2",
"eslint": "^9.5.0",
"npm-run-all2": "^6.2.2"
}
}