-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
47
48
49
50
51
{
"name": "@code-not-art/core",
"version": "2.0.0-beta.2",
"description": "HTML 5 Canvas Drawing Library",
"type": "module",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-not-art/core.git"
},
"keywords": [
"canvas",
"generative",
"art",
"TypeScript",
"makecodenotart",
"codenotart",
"codeart"
],
"author": "Jon Eubank <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/code-not-art/core/issues"
},
"homepage": "https://github.com/code-not-art/core#readme",
"devDependencies": {
"@types/bezier-js": "^4.1.3",
"@types/node": "^16.7.1",
"@types/seed-random": "^2.2.1",
"@types/tinycolor2": "^1.4.3",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"bezier-js": "^6.1.4",
"fractal-noise": "^1.2.0",
"lodash": "^4.17.21",
"open-simplex-noise": "^2.5.0",
"seed-random": "^2.2.0",
"tinycolor2": "^1.4.2"
}
}