-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.83 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@batpb/genart",
"version": "2.0.0-rc.3",
"description": "A TypeScript compatible library built with p5.js for creating responsive generative art projects.",
"main": "./out/dist/batpb-genart.js",
"module": "./out/dist/batpb-genart.mjs",
"types": "./out/dist/batpb-genart.d.ts",
"exports": {
".": {
"import": {
"types": "./out/dist/batpb-genart.d.mts",
"default": "./out/dist/batpb-genart.mjs"
},
"require": {
"types": "./out/dist/batpb-genart.d.ts",
"default": "./out/dist/batpb-genart.js"
}
}
},
"files": [
"./out/dist/batpb-genart.js",
"./out/dist/batpb-genart.js.map",
"./out/dist/batpb-genart.d.ts",
"./out/dist/batpb-genart.mjs",
"./out/dist/batpb-genart.mjs.map",
"./out/dist/batpb-genart.d.mts",
"./.node-version",
"./LICENSE",
"./package.json",
"./package-lock.json",
"./README.md"
],
"scripts": {
"build": "rm -r ./out; tsup",
"docs": "typedoc",
"lint:js": "eslint -c eslint.config.js.mjs ./eslint.config.js.mjs ./eslint.config.ts.mjs",
"lint:ts": "eslint -c eslint.config.ts.mjs ./src ./jest.config.ts ./tsup.config.ts",
"prepack": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brittni-and-the-polar-bear/genart.git"
},
"keywords": [
"algorithmic art",
"code art",
"genart",
"generative art",
"p5",
"p5.js",
"p5js",
"p5-js",
"p5.js library",
"p5js library",
"typescript"
],
"author": {
"name": "brittni and the polar bear",
"url": "https://linktr.ee/brittniandthepolarbear"
},
"contributors": [
{
"name": "brittni watkins",
"url": "https://linktr.ee/brittniwatkins"
},
{
"name": "azurepolarbear",
"url": "https://linktr.ee/azurepolarbear"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/brittni-and-the-polar-bear/genart/issues"
},
"homepage": "https://brittni-and-the-polar-bear.github.io/genart/",
"dependencies": {
"@types/nearest-color": "^0.4.1",
"@types/p5": "^1.7.6",
"cococh": "^1.2.4",
"nearest-color": "^0.4.4",
"p5": "^1.11.2"
},
"peerDependencies": {
"color-name-list": "11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@happy-dom/jest-environment": "^15.11.7",
"@stylistic/eslint-plugin": "^2.12.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"eslint": "^9.16.0",
"eslint-plugin-es-x": "^8.4.1",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typedoc": "^0.27.4",
"typedoc-plugin-coverage": "^3.4.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}