Skip to content

Commit

Permalink
chore: align package.json with old version
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphsmith80 committed Aug 31, 2024
1 parent 89fb152 commit 5e3493a
Showing 1 changed file with 97 additions and 34 deletions.
131 changes: 97 additions & 34 deletions components/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,96 @@
"description": "Official tsParticles Solid Component - Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Inferno, Riot.js.",
"license": "MIT",
"author": "Matteo Bruni <[email protected]>",
"contributors": [],
"files": [
"dist"
],
"homepage": "https://particles.js.org",
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/tsparticles/solid/issues"
},
"repository": {
"url": "https://github.com/tsparticles/solid",
"directory": "components/solid",
"type": "git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/matteobruni"
},
{
"type": "github",
"url": "https://github.com/sponsors/tsparticles"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/matteobruni"
}
],
"keywords": [
"front-end",
"frontend",
"tsparticles",
"particles.js",
"particlesjs",
"particles",
"particle",
"canvas",
"jsparticles",
"xparticles",
"particles-js",
"particles-bg",
"particles-bg-vue",
"particles-ts",
"particles.ts",
"react-particles-js",
"react-particles.js",
"react-particles",
"react",
"reactjs",
"vue-particles",
"ngx-particles",
"angular-particles",
"particleground",
"solid",
"vue",
"vuejs",
"preact",
"preactjs",
"jquery",
"angularjs",
"angular",
"typescript",
"javascript",
"animation",
"web",
"html5",
"web-design",
"webdesign",
"css",
"html",
"css3",
"animated",
"background",
"confetti",
"canvas",
"fireworks",
"fireworks-js",
"confetti-js",
"confettijs",
"fireworksjs",
"canvas-confetti"
],
"exports": {
"solid": {
"development": "./dist/dev.jsx",
Expand All @@ -31,18 +110,23 @@
"default": "./dist/index.js"
}
},
"typesVersions": {},
"prettier": "@tsparticles/prettier-config",
"scripts": {
"build": "tsup",
"check": "tsc",
"build": "pnpm run prettify && pnpm run lint && tsup",
"build:ci": "pnpm run prettify:ci && pnpm run lint:ci && tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint": "concurrently \"pnpm:lint:code --fix\" pnpm:lint:types",
"lint:ci": "concurrently pnpm:lint:code pnpm:lint:types",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
"update-deps": "pnpm up -Li",
"prettify": "prettier --write \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"README.md\"",
"prettify:ci": "prettier --check \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"README.md\"",
"prepack": "pnpm build",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"solid-js": "^1.6.0",
Expand All @@ -68,27 +152,6 @@
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.6.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/matteobruni"
},
{
"type": "github",
"url": "https://github.com/sponsors/tsparticles"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/matteobruni"
}
],
"prettier": "@tsparticles/prettier-config",
"keywords": [
"solid"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
}
"browser": {},
"typesVersions": {}
}

0 comments on commit 5e3493a

Please sign in to comment.