forked from floating-ui/floating-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
{
"name": "@floating-ui/monorepo",
"@rollingversions/ignore": true,
"private": true,
"version": "0.0.0",
"@rollingversions": {
"baseVersion": [
0,
0,
0
]
},
"description": "Floating UI monorepo",
"workspaces": [
"./packages/*"
],
"scripts": {
"typecheck": "tsc",
"lint": "eslint . --ext .js,.ts,.tsx",
"playwright": "npx playwright test packages/dom/test/functional",
"playwright:update": "npm run playwright -- -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 run build && npm -w packages/vue run build",
"build:typescript": "tsc --project .config/tsconfig.json",
"clean": "rm -rf packages/**/src/[^_]*.d.ts packages/**/src/**/[^_]*.d.ts packages/**/dist",
"postinstall": "patch-package"
},
"author": "",
"license": "MIT",
"prettier": {
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"browserslist": [
"Chrome >= 73",
"Firefox >= 78",
"Edge >= 79",
"Safari >= 12.0",
"iOS >= 12.0",
"Opera >= 53"
],
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@playwright/test": "^1.35.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^20.3.2",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^8.43.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jsdom": "^22.1.0",
"patch-package": "^6.5.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rollup": "^3.26.0",
"tailwindcss": "^3.3.2",
"typescript": "~5.0",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}