-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "noise-maker",
"version": "1.0.0",
"type": "module",
"description": "Makes noise based SVG patterns/textures",
"homepage": "https://github.com/ChrisMBarr/noise-maker#readme",
"author": {
"name": "Chris Barr",
"url": "https://chrisbarr.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisMBarr/noise-maker.git"
},
"bugs": {
"url": "https://github.com/ChrisMBarr/noise-maker/issues"
},
"keywords": [],
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"license": "MIT",
"scripts": {
"build": "npm-run-all lint bundle build:sass",
"build:sass": "node sass-build.js",
"build:ts": "npm-run-all lint tsc",
"bundle": "node esbuild.config.mjs",
"lint": "npx eslint .",
"update": "ncu -u && npm i",
"watch": "npm-run-all --parallel watch:sass watch:bundle",
"watch:bundle": "node esbuild-watch.config.mjs",
"watch:sass": "sass -w src:app",
"watch:scss": "npm run watch sass",
"watch:ts": "tsc -w"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bootstrap": "^5.2.10",
"@types/eslint__js": "^8.42.3",
"@types/jquery": "^3.5.32",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"npm-run-all": "^4.1.5",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
}
}