From fb6913854eebb0549f89c41483c2308fb9cbfbb6 Mon Sep 17 00:00:00 2001 From: Matt Karl Date: Wed, 10 Apr 2024 07:08:27 -0400 Subject: [PATCH] Fix: Missing gradient-parser types (#455) Fixes #454 --- package-lock.json | 7 ++++--- package.json | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8ccfe8a04..4c276734d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,11 +7,13 @@ "": { "name": "pixi-filters", "version": "6.0.0", + "dependencies": { + "@types/gradient-parser": "^0.1.2" + }, "devDependencies": { "@pixi/eslint-config": "^4.0.1", "@pixi/extension-scripts": "^2.4.0", "@pixi/webdoc-template": "^2.2.3", - "@types/gradient-parser": "^0.1.2", "@webdoc/cli": "^2.2.0", "base64-to-image": "^1.0.2", "copyfiles": "^2.4.1", @@ -3474,8 +3476,7 @@ "node_modules/@types/gradient-parser": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/@types/gradient-parser/-/gradient-parser-0.1.5.tgz", - "integrity": "sha512-r7K3NkJz3A95WkVVmjs0NcchhHstC2C/VIYNX4JC6tieviUNo774FFeOHjThr3Vw/WCeMP9kAT77MKbIRlO/4w==", - "dev": true + "integrity": "sha512-r7K3NkJz3A95WkVVmjs0NcchhHstC2C/VIYNX4JC6tieviUNo774FFeOHjThr3Vw/WCeMP9kAT77MKbIRlO/4w==" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.4", diff --git a/package.json b/package.json index 78e2b022d..cd7f97a71 100644 --- a/package.json +++ b/package.json @@ -222,11 +222,13 @@ "eslintConfig": { "extends": "@pixi/eslint-config" }, + "dependencies": { + "@types/gradient-parser": "^0.1.2" + }, "devDependencies": { "@pixi/eslint-config": "^4.0.1", "@pixi/extension-scripts": "^2.4.0", "@pixi/webdoc-template": "^2.2.3", - "@types/gradient-parser": "^0.1.2", "@webdoc/cli": "^2.2.0", "base64-to-image": "^1.0.2", "copyfiles": "^2.4.1",