@erikwatson/snowfall 4.0.1 → 4.1.1
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/LICENSE +0 -0
- package/README.md +0 -0
- package/dist/config.d.ts +0 -0
- package/dist/defaults.d.ts +1 -1
- package/dist/index.d.ts +0 -0
- package/dist/index.js +12 -12
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.LICENSE.txt +90 -2
- package/dist/layer.d.ts +0 -0
- package/dist/layers/base-layer.d.ts +0 -0
- package/dist/layers/image-layer.d.ts +0 -0
- package/dist/layers/simple-layer.d.ts +0 -0
- package/dist/math.d.ts +0 -0
- package/dist/simulation.d.ts +0 -0
- package/dist/snowfall.d.ts +0 -0
- package/dist/snowflake/index.d.ts +0 -0
- package/dist/snowflake/move.d.ts +0 -0
- package/dist/snowflake/render.d.ts +0 -0
- package/dist/test/config.test.d.ts +0 -0
- package/dist/types.d.ts +0 -0
- package/dist/utils.d.ts +0 -0
- package/package.json +13 -11
|
File without changes
|
package/dist/types.d.ts
CHANGED
|
File without changes
|
package/dist/utils.d.ts
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@erikwatson/snowfall",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "A beautiful and highly configurable snow effect for your winter themed project",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,6 +11,15 @@
|
|
|
11
11
|
"repository": "git@github.com:erikwatson/snowfall.js.git",
|
|
12
12
|
"author": "Erik Watson <erik@erikwatson.me>",
|
|
13
13
|
"license": "MIT",
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "pnpm exec webpack --config webpack.dev.js",
|
|
16
|
+
"build:production": "pnpm exec webpack --config webpack.prod.js",
|
|
17
|
+
"build:all": "pnpm run build && pnpm run build:production",
|
|
18
|
+
"build:docs": "pnpm exec typedoc --out ../snowfall-docs src/snowfall.ts --readme README.md",
|
|
19
|
+
"watch": "pnpm exec webpack --config webpack.dev.js --watch",
|
|
20
|
+
"pub": "pnpm run build:all && npm publish --access public",
|
|
21
|
+
"prepare": "husky"
|
|
22
|
+
},
|
|
14
23
|
"devDependencies": {
|
|
15
24
|
"@babel/core": "^7.25.2",
|
|
16
25
|
"@babel/preset-env": "^7.25.2",
|
|
@@ -31,10 +40,11 @@
|
|
|
31
40
|
"webpack-merge": "^6.0.1"
|
|
32
41
|
},
|
|
33
42
|
"dependencies": {
|
|
34
|
-
"@erikwatson/bramble": "^0.
|
|
43
|
+
"@erikwatson/bramble": "^0.10.0",
|
|
35
44
|
"@tweenjs/tween.js": "^23.1.2",
|
|
36
45
|
"seedrandom": "^3.0.5"
|
|
37
46
|
},
|
|
47
|
+
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912",
|
|
38
48
|
"keywords": [
|
|
39
49
|
"snow",
|
|
40
50
|
"snowfall",
|
|
@@ -56,13 +66,5 @@
|
|
|
56
66
|
"require": "./dist/index.js",
|
|
57
67
|
"types": "./dist/index.d.ts"
|
|
58
68
|
}
|
|
59
|
-
},
|
|
60
|
-
"scripts": {
|
|
61
|
-
"build": "pnpm exec webpack --config webpack.dev.js",
|
|
62
|
-
"build:production": "pnpm exec webpack --config webpack.prod.js",
|
|
63
|
-
"build:all": "pnpm run build && pnpm run build:production",
|
|
64
|
-
"build:docs": "pnpm exec typedoc --out ../snowfall-docs src/snowfall.ts --readme README.md",
|
|
65
|
-
"watch": "pnpm exec webpack --config webpack.dev.js --watch",
|
|
66
|
-
"pub": "pnpm run build:all && npm publish --access public"
|
|
67
69
|
}
|
|
68
|
-
}
|
|
70
|
+
}
|