@basementuniverse/particles-2d 1.1.1 → 1.2.0
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.
- package/package.json +11 -8
- package/.prettierrc +0 -5
- package/.vscode/settings.json +0 -17
- package/resources/particles-2d-optimised.gif +0 -0
package/package.json
CHANGED
|
@@ -1,25 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basementuniverse/particles-2d",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "A component for animating and rendering particles in 2d games",
|
|
5
|
-
"main": "build/index.js",
|
|
6
|
-
"types": "build/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "webpack",
|
|
9
|
-
"watch": "webpack --watch"
|
|
10
|
-
},
|
|
11
5
|
"author": "Gordon Larrigan <gordonlarrigan@gmail.com> (https://gordonlarrigan.com)",
|
|
12
6
|
"license": "MIT",
|
|
13
7
|
"repository": {
|
|
14
8
|
"type": "git",
|
|
15
9
|
"url": "git+https://github.com/basementuniverse/particles-2d.git"
|
|
16
10
|
},
|
|
11
|
+
"main": "build/index.js",
|
|
12
|
+
"types": "build/index.d.ts",
|
|
13
|
+
"files": [
|
|
14
|
+
"build"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "webpack",
|
|
18
|
+
"watch": "webpack --watch"
|
|
19
|
+
},
|
|
17
20
|
"dependencies": {
|
|
18
21
|
"@basementuniverse/canvas-helpers": "^1.2.1",
|
|
19
22
|
"@basementuniverse/intersection-helpers": "^0.3.0",
|
|
20
23
|
"@basementuniverse/parsecolor": "^1.0.2",
|
|
21
24
|
"@basementuniverse/utils": "^1.7.0",
|
|
22
|
-
"@basementuniverse/vec": "^2.3.
|
|
25
|
+
"@basementuniverse/vec": "^2.3.5"
|
|
23
26
|
},
|
|
24
27
|
"devDependencies": {
|
|
25
28
|
"@types/node": "^18.11.12",
|
package/.prettierrc
DELETED
package/.vscode/settings.json
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"github.copilot.enable": {
|
|
3
|
-
"suggestions": true,
|
|
4
|
-
"inlineSuggestions": true
|
|
5
|
-
},
|
|
6
|
-
"editor.codeActionsOnSave": {
|
|
7
|
-
"source.organizeImports": "explicit"
|
|
8
|
-
},
|
|
9
|
-
"[typescript]": {
|
|
10
|
-
"editor.formatOnSave": true,
|
|
11
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
12
|
-
},
|
|
13
|
-
"[typescriptreact]": {
|
|
14
|
-
"editor.formatOnSave": true,
|
|
15
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
16
|
-
}
|
|
17
|
-
}
|
|
Binary file
|