-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "bgsvg",
"description": "Generate beautiful random SVG backgrounds.",
"type": "module",
"version": "1.3.1",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"verify": "tsc --noEmit",
"preview": "tsx watch preview/server.ts",
"build": "tsup-node",
"lint": "eslint src",
"test": "cross-env LOG_LEVEL=silent vitest --run"
},
"author": "Uday Hiwarale <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thatisuday/bgsvg/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatisuday/bgsvg.git"
},
"devDependencies": {
"@types/chroma-js": "2.4.4",
"@types/express": "4.17.21",
"@types/pino": "7.0.5",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"express": "4.19.2",
"file-type": "19.0.0",
"handlebars": "4.7.8",
"image-size": "1.1.1",
"pino": "9.2.0",
"pino-pretty": "11.2.1",
"tsup": "8.1.0",
"tsx": "4.15.7",
"typescript": "5.5.2",
"vitest": "1.6.0"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
},
"dependencies": {
"chroma-js": "2.4.2",
"happy-dom": "14.12.3",
"puppeteer": "22.12.1"
}
}