cae976a18b
* remove local testing playgrounds * bump outdated packages
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"name": "headlessui",
|
|
"version": "0.0.0",
|
|
"description": "Headless UI components for various libraries like React and Vue",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/tailwindlabs/headlessui",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"react": "yarn workspace @headlessui/react",
|
|
"vue": "yarn workspace @headlessui/vue",
|
|
"shared": "yarn workspace @headlessui/shared",
|
|
"build": "yarn workspaces run build",
|
|
"test": "./scripts/test.sh",
|
|
"lint": "./scripts/lint.sh"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": "tsdx lint"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 100,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.11.9",
|
|
"@types/node": "^14.14.22",
|
|
"husky": "^4.3.8",
|
|
"lint-staged": "^12.2.1",
|
|
"tsdx": "^0.14.1",
|
|
"tslib": "^2.1.0",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|