mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
* chore: update deps & search indice action refactor - Updated pnpm, dependencies and regenerated the lockfile - Removed immer and some eslint plugins that weren't being used - Updated the version of `@types/node` to v24 on internal packages as that's the version that is being used on github actions - Refactored the uploadSearchIndices action slightly and upgraded the meilisearch dependency * chore: remove more deps
98 lines
2.6 KiB
JSON
98 lines
2.6 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/ui",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "tsc --noEmit && vite build",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src",
|
|
"prepack": "pnpm run build && pnpm run lint",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/ui/*'",
|
|
"release": "cliff-jumper",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build",
|
|
"chromatic": "chromatic"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Vlad Frangu <me@vladfrangu.dev>",
|
|
"Aura Román <kyradiscord@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git",
|
|
"directory": "packages/ui"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
|
"dependencies": {
|
|
"@ariakit/react": "^0.4.20",
|
|
"@react-icons/all-files": "^4.1.0",
|
|
"react": "^19.2.1",
|
|
"react-dom": "^19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@favware/cliff-jumper": "^6.0.0",
|
|
"@react-icons/all-files": "^4.1.0",
|
|
"@storybook/addon-docs": "^10.1.4",
|
|
"@storybook/addon-links": "^10.1.4",
|
|
"@storybook/addon-themes": "^10.1.4",
|
|
"@storybook/builder-vite": "^10.1.4",
|
|
"@storybook/react": "^10.1.4",
|
|
"@storybook/react-vite": "^10.1.4",
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "^19.2.7",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@unocss/eslint-plugin": "^66.5.10",
|
|
"@unocss/reset": "^66.5.10",
|
|
"@vitejs/plugin-react": "^5.1.2",
|
|
"chromatic": "^13.3.4",
|
|
"cross-env": "^10.1.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-neon": "^0.2.9",
|
|
"eslint-formatter-compact": "^9.0.1",
|
|
"eslint-formatter-pretty": "^7.0.0",
|
|
"prettier": "^3.7.4",
|
|
"prop-types": "^15.8.1",
|
|
"storybook": "^10.1.4",
|
|
"turbo": "^2.6.3",
|
|
"typescript": "~5.9.3",
|
|
"unocss": "^66.5.10",
|
|
"vite": "^7.2.7",
|
|
"vite-plugin-dts": "^4.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
}
|
|
}
|