-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "p5-typescript-template",
"version": "4.1.0",
"license": "MIT",
"private": true,
"description": "A template project for using p5.js with TypeScript and Webpack.",
"keywords": [
"algorithmic art",
"code art",
"generative art",
"p5",
"p5.js",
"p5js",
"typescript",
"template"
],
"author": {
"name": "Brittni Watkins",
"url": "https://blwatkins.github.io/"
},
"homepage": "https://github.com/blwatkins/p5-typescript-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/blwatkins/p5-typescript-template.git"
},
"bugs": {
"url": "https://github.com/blwatkins/p5-typescript-template/issues"
},
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"build": "webpack --mode production",
"serve": "webpack-dev-server --mode production",
"build:single-file": "webpack --mode production --config webpack.single-file.config.cjs",
"serve:single-file": "webpack-dev-server --mode production --config webpack.single-file.config.cjs",
"build:dev": "webpack --mode development",
"serve:dev": "webpack-dev-server --mode development",
"build:single-file:dev": "webpack --mode development --config webpack.single-file.config.cjs",
"serve:single-file:dev": "webpack-dev-server --mode development --config webpack.single-file.config.cjs",
"build:check": "npm run build:dev && npm run build:single-file:dev && npm run build && npm run build:single-file",
"lint:js": "eslint -c eslint.config.js.mjs .",
"lint:ts": "eslint -c eslint.config.ts.mjs .",
"lint:all": "npm run lint:js && npm run lint:ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"p5": "^2.2.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"css-loader": "^7.1.4",
"eslint": "^10.0.3",
"eslint-plugin-es-x": "^9.5.0",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"mini-css-extract-plugin": "^2.10.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}