@awesome-flow/noise 0.7.0 → 0.8.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/dist/abstract/index.cjs +8 -3469
- package/dist/abstract/index.d.cts +2 -2
- package/dist/abstract/index.d.ts +2 -2
- package/dist/abstract/index.js +15 -3508
- package/dist/chunk-2Y22M2Y4.js +0 -0
- package/dist/chunk-4PQ4USYV.cjs +1 -0
- package/dist/chunk-5ELMFIRV.js +0 -0
- package/dist/chunk-ACWBUUZ7.cjs +1376 -0
- package/dist/chunk-BG6U3TYO.js +1376 -0
- package/dist/chunk-D5JM4EYQ.cjs +305 -0
- package/dist/chunk-DWSACR65.js +305 -0
- package/dist/chunk-FFQRP23R.cjs +1 -0
- package/dist/chunk-JACBT4MS.cjs +1 -0
- package/dist/chunk-KHIIB5TH.js +93 -0
- package/dist/chunk-M67JHEU2.cjs +93 -0
- package/dist/chunk-N6YNJKLS.cjs +1 -0
- package/dist/chunk-PS5VUND5.js +348 -0
- package/dist/chunk-Q5FVGKKM.cjs +1 -0
- package/dist/chunk-RDQ4BOOV.js +522 -0
- package/dist/chunk-RKTZQUWR.cjs +348 -0
- package/dist/chunk-RVWCBH7K.js +0 -0
- package/dist/chunk-SD3T3LFY.js +0 -0
- package/dist/chunk-SGHEOOLW.js +19 -0
- package/dist/chunk-TOYKGWYO.js +0 -0
- package/dist/chunk-TZCT2GZV.cjs +522 -0
- package/dist/chunk-UNMRBZ5X.cjs +19 -0
- package/dist/chunk-WOJTKQKO.cjs +1 -0
- package/dist/chunk-XZQQ6N3L.js +0 -0
- package/dist/modules/index.cjs +4 -42
- package/dist/modules/index.js +3 -15
- package/dist/nodes/generators/index.cjs +13 -335
- package/dist/nodes/generators/index.d.cts +7 -7
- package/dist/nodes/generators/index.d.ts +7 -7
- package/dist/nodes/generators/index.js +12 -299
- package/dist/nodes/groups/index.cjs +4 -111
- package/dist/nodes/groups/index.d.cts +2 -2
- package/dist/nodes/groups/index.d.ts +2 -2
- package/dist/nodes/groups/index.js +2 -88
- package/dist/nodes/index.cjs +75 -3425
- package/dist/nodes/index.js +37 -3397
- package/dist/nodes/modifiers/index.cjs +4 -1459
- package/dist/nodes/modifiers/index.d.cts +6 -6
- package/dist/nodes/modifiers/index.d.ts +6 -6
- package/dist/nodes/modifiers/index.js +11 -1479
- package/dist/nodes/output/index.cjs +8 -1335
- package/dist/nodes/output/index.d.cts +3 -3
- package/dist/nodes/output/index.d.ts +3 -3
- package/dist/nodes/output/index.js +10 -1361
- package/dist/nodes/selectors/index.cjs +8 -1317
- package/dist/nodes/selectors/index.d.cts +1 -1
- package/dist/nodes/selectors/index.d.ts +1 -1
- package/dist/nodes/selectors/index.js +8 -1343
- package/dist/nodes/transformers/index.cjs +8 -331
- package/dist/nodes/transformers/index.d.cts +5 -5
- package/dist/nodes/transformers/index.d.ts +5 -5
- package/dist/nodes/transformers/index.js +6 -311
- package/dist/templates/generators/index.cjs +8 -1199
- package/dist/templates/generators/index.d.cts +5 -5
- package/dist/templates/generators/index.d.ts +5 -5
- package/dist/templates/generators/index.js +17 -1226
- package/dist/templates/groups/index.cjs +8 -1199
- package/dist/templates/groups/index.js +8 -1226
- package/dist/templates/index.cjs +77 -1263
- package/dist/templates/index.js +43 -1226
- package/dist/templates/modifiers/index.cjs +8 -1199
- package/dist/templates/modifiers/index.d.cts +9 -9
- package/dist/templates/modifiers/index.d.ts +9 -9
- package/dist/templates/modifiers/index.js +16 -1226
- package/dist/templates/output/index.cjs +8 -1199
- package/dist/templates/output/index.d.cts +3 -3
- package/dist/templates/output/index.d.ts +3 -3
- package/dist/templates/output/index.js +11 -1226
- package/dist/templates/selectors/index.cjs +8 -1199
- package/dist/templates/selectors/index.js +9 -1226
- package/dist/templates/transformers/index.cjs +8 -1199
- package/dist/templates/transformers/index.js +12 -1226
- package/package.json +30 -20
package/package.json
CHANGED
|
@@ -1,35 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awesome-flow/noise",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "The Awesome Flow package for noise. Provides basic components to define noise-based flows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build": "npx
|
|
8
|
-
"build:clean": "npx rimraf ./dist && npm run build",
|
|
7
|
+
"build:dev": "npx tsc -p ./tsconfig.build.json",
|
|
8
|
+
"build:clean": "npx rimraf ./dist && npm run build:dev",
|
|
9
|
+
"build:prod": "npx rimraf ./dist && npx tsup --env.NODE_ENV production",
|
|
9
10
|
"prettier:write": "npx prettier --write \"**/*.{ts,tsx}\"",
|
|
10
11
|
"typecheck": "npx attw $(npm pack) --ignore-rules no-resolution",
|
|
11
12
|
"ts": "npx tsc --noEmit --incremental",
|
|
12
13
|
"ts:watch": "npx tsc --noEmit --incremental --watch"
|
|
13
14
|
},
|
|
14
15
|
"dependencies": {
|
|
15
|
-
"@awesome-flow/core": "^0.
|
|
16
|
+
"@awesome-flow/core": "^0.8.0",
|
|
17
|
+
"alea": "^1.0.1",
|
|
18
|
+
"libnoise-simplex-ts": "^0.0.2",
|
|
19
|
+
"simplex-noise": "^4.0.3"
|
|
16
20
|
},
|
|
17
21
|
"peerDependencies": {
|
|
18
|
-
"@
|
|
19
|
-
"@mantine/
|
|
20
|
-
"@mantine/hooks": "
|
|
21
|
-
"@tabler/icons-react": "
|
|
22
|
-
"@xyflow/react": "
|
|
23
|
-
"@xyflow/system": "
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
22
|
+
"@mantine/core": ">=7.13.2",
|
|
23
|
+
"@mantine/form": ">=7.12.1",
|
|
24
|
+
"@mantine/hooks": ">=7.13.2",
|
|
25
|
+
"@tabler/icons-react": ">=3.19.0",
|
|
26
|
+
"@xyflow/react": ">=12.3.4",
|
|
27
|
+
"@xyflow/system": ">=0.0.45",
|
|
28
|
+
"react": ">=18.3.1",
|
|
29
|
+
"react-dom": ">=18.3.1",
|
|
30
|
+
"zustand": ">=4.5.5"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@dagrejs/dagre": "^1.1.4",
|
|
34
|
+
"@mantine/core": "^7.14.2",
|
|
35
|
+
"@mantine/form": "^7.14.2",
|
|
36
|
+
"@mantine/hooks": "^7.14.2",
|
|
37
|
+
"@tabler/icons-react": "^3.22.0",
|
|
38
|
+
"@xyflow/react": "^12.3.5",
|
|
39
|
+
"@xyflow/system": "^0.0.46",
|
|
40
|
+
"react": "^18.3.1",
|
|
41
|
+
"react-dom": "^18.3.1",
|
|
42
|
+
"zustand": "^5.0.1"
|
|
33
43
|
},
|
|
34
44
|
"exports": {
|
|
35
45
|
"./abstract": {
|
|
@@ -110,5 +120,5 @@
|
|
|
110
120
|
"url": "https://github.com/privatebytes/awesome-flow/issues"
|
|
111
121
|
},
|
|
112
122
|
"homepage": "https://github.com/privatebytes/awesome-flow#readme",
|
|
113
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "53165b02e373bacaaf795a1a5a201170f7006594"
|
|
114
124
|
}
|