@fjandin/react-shader 0.0.1 → 0.0.2
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 +15 -14
package/package.json
CHANGED
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fjandin/react-shader",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "React component for rendering WebGL shaders",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"react",
|
|
11
|
+
"shader",
|
|
12
|
+
"webgl",
|
|
13
|
+
"glsl",
|
|
14
|
+
"graphics"
|
|
15
|
+
],
|
|
16
|
+
"author": "fjandin",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/Fjandin/react-shader.git"
|
|
21
|
+
},
|
|
9
22
|
"exports": {
|
|
10
23
|
".": {
|
|
11
24
|
"import": {
|
|
@@ -27,6 +40,7 @@
|
|
|
27
40
|
"build:cjs": "bun build ./src/index.ts --target browser --format cjs --outfile ./dist/index.cjs --external react --external react-dom",
|
|
28
41
|
"build:types": "tsc --emitDeclarationOnly --declaration --outDir ./dist",
|
|
29
42
|
"clean": "rm -rf dist",
|
|
43
|
+
"prepublishOnly": "bun run clean && bun run build",
|
|
30
44
|
"lint": "biome check",
|
|
31
45
|
"typecheck": "tsc --noEmit",
|
|
32
46
|
"dev": "bun run src/example/index.ts"
|
|
@@ -43,18 +57,5 @@
|
|
|
43
57
|
"react": "^18.2.0",
|
|
44
58
|
"react-dom": "^18.2.0",
|
|
45
59
|
"typescript": "^5.0.0"
|
|
46
|
-
},
|
|
47
|
-
"keywords": [
|
|
48
|
-
"react",
|
|
49
|
-
"shader",
|
|
50
|
-
"webgl",
|
|
51
|
-
"glsl",
|
|
52
|
-
"graphics"
|
|
53
|
-
],
|
|
54
|
-
"author": "fjandin",
|
|
55
|
-
"license": "MIT",
|
|
56
|
-
"repository": {
|
|
57
|
-
"type": "git",
|
|
58
|
-
"url": "https://github.com/fjandin/fjandin-react-shader.git"
|
|
59
60
|
}
|
|
60
61
|
}
|