-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 KB
/
package.json
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
{
"name": "value-noise-js",
"description": "A light and simple way to generate 1D, 2D, and 3D value noise in javascript.",
"version": "1.2.4",
"main": "./dist/value-noise.js",
"module": "./dist/value-noise.mjs",
"types": "./dist/value-noise.d.js",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jsoto22/value-noise-js.git"
},
"keywords": [
"Noise",
"Perlin Noise",
"Value Noise",
"1D Noise",
"2D Noise",
"3D Noise",
"pRNG",
"RNG",
"Javascript",
"Typescript",
"Light weight"
],
"author": "Jared Soto",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jsoto22/value-noise-js/issues"
},
"homepage": "https://github.com/Jsoto22/value-noise-js#readme"
}