-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "react-noise",
"version": "0.2.11",
"licence": "MIT",
"description": "A light-weight react component for creating noise textures",
"module": "dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"./dist/*.css",
"./dist/*.ts",
"./dist/*.js",
"./dist/*.cjs",
"./dist/client/*.ts",
"./dist/client/*.js"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/react-noise.cjs",
"default": "./dist/react-noise.js"
},
"./css": "./dist/react-noise.css",
"./ssr": {
"types": "./dist/ssr/ssr.d.ts",
"require": "./dist/ssr.cjs",
"default": "./dist/ssr.js"
}
},
"scripts": {
"build": "rm -rf ./dist && microbundle ./src/index.ts --sourcemap false -f esm,cjs,umd"
},
"keywords": [
"texture",
"react",
"noise"
],
"author": "Moniet Sawhney",
"license": "ISC",
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"typescript": "^5.2.2",
"canvas": ">=2.11.2",
"microbundle": "^0.15.1"
}
}