forked from floating-ui/floating-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "@floating-ui/monorepo",
"@rollingversions/ignore": true,
"private": true,
"version": "0.0.0",
"@rollingversions": {
"baseVersion": [
0,
0,
1
]
},
"description": "Floating UI monorepo",
"workspaces": [
"./packages/*"
],
"scripts": {
"test:functional": "npx playwright test packages/dom/test/functional",
"test:functional:update": "npm run test:functional -- -u",
"build": "npm -w packages/core run build && npm -w packages/dom run build && npm -w packages/react-dom run build && npm -w packages/react-native run build && npm -w packages/react-dom-interactions run build",
"build:typescript": "tsc --project .config/tsconfig.json",
"clean": "rm -rf packages/**/src/[^_]*.d.ts packages/**/src/**/[^_]*.d.ts packages/**/dist",
"lint": "eslint . --ext .js,.ts",
"test:types": "tsc",
"dev:website": "npm run build && npm -w website run dev"
},
"alias": {
"@floating-ui/core": "@floating-ui/core/src/index.ts",
"@floating-ui/dom": "@floating-ui/dom/src/index.ts",
"@floating-ui/react-dom": "@floating-ui/react-dom/src/index.ts",
"@floating-ui/react-dom-interactions": "@floating-ui/react-dom-interactions/src/index.ts"
},
"author": "",
"license": "MIT",
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"devDependencies": {
"@playwright/test": "1.17.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-plugin-react-hooks": "^4.3.0",
"parcel": "^2.6.0",
"prettier": "^2.5.0",
"process": "^0.11.10",
"typescript": "~4.1"
}
}