pixi-solid 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +10 -10
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pixi-solid",
3
3
  "private": false,
4
- "version": "0.0.5",
4
+ "version": "0.0.6",
5
5
  "description": "A library to write PixiJS applications with SolidJS",
6
6
  "author": "Luke Thompson",
7
7
  "license": "MIT",
@@ -22,14 +22,6 @@
22
22
  "README.md",
23
23
  "LICENSE"
24
24
  ],
25
- "scripts": {
26
- "dev": "vite",
27
- "prebuild": "rm -rf dist",
28
- "build": "vite build && tsc --project tsconfig.build.json --emitDeclarationOnly && npm run build:docs",
29
- "build:docs": "typedoc --options typedoc.config.js",
30
- "prepublishOnly": "npm run build",
31
- "preview": "vite preview"
32
- },
33
25
  "peerDependencies": {
34
26
  "pixi.js": "^8.14.3",
35
27
  "solid-js": "^1.9.10"
@@ -47,5 +39,13 @@
47
39
  },
48
40
  "overrides": {
49
41
  "vite": "npm:rolldown-vite@7.2.5"
42
+ },
43
+ "scripts": {
44
+ "dev": "vite",
45
+ "prebuild": "rm -rf dist",
46
+ "build": "vite build && tsc --project tsconfig.build.json --emitDeclarationOnly && pnpm run build:docs",
47
+ "build:docs": "typedoc --options typedoc.config.js",
48
+ "preview": "vite preview",
49
+ "preinstall": "npx only-allow pnpm"
50
50
  }
51
- }
51
+ }