-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "rainbow-waves",
"version": "2.0.0-rc.1",
"description": "the rainbow waves algorithmic art project",
"private": true,
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"dev": "webpack-dev-server --mode development",
"lint:js": "eslint -c eslint.config.js.mjs ./eslint.config.js.mjs ./eslint.config.ts.mjs ./webpack.config.js",
"lint:ts": "eslint -c eslint.config.ts.mjs ./src",
"stats": "webpack --mode development --profile --json > ./out/stats.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brittni-and-the-polar-bear/rainbow-waves.git"
},
"keywords": [
"algorithmic art",
"code art",
"generative art",
"p5",
"p5.js",
"p5js",
"p5-js",
"typescript",
"math",
"trigonometry",
"sine",
"cosine",
"waves"
],
"author": {
"name": "azurepolarbear",
"url": "https://linktr.ee/azurepolarbear"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/brittni-and-the-polar-bear/rainbow-waves/issues"
},
"homepage": "https://github.com/brittni-and-the-polar-bear/rainbow-waves#readme",
"dependencies": {
"@batpb/genart": "^2.0.0-rc2",
"p5": "^1.11.2"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/eslint__js": "^8.42.3",
"@types/p5": "^1.7.6",
"css-loader": "^7.1.2",
"eslint": "^9.18.0",
"eslint-plugin-es-x": "^8.4.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-security": "^3.0.1",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}