-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "@profile.rocks/generator",
"version": "1.1.5",
"author": "Stefan Samson <ss42701@outlook.com> (https://ssbit01.github.io/)",
"repository": "github:profilerocks/generator",
"main": "./src/index.js",
"bugs": {
"url": "https://github.com/profilerocks/generator/issues"
},
"description": "profile.rocks page generator.",
"homepage": "https://github.com/profilerocks/generator#readme",
"keywords": [
"generator",
"html",
"page",
"types",
"web",
"webpage"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "esbuild ./src/index.js --bundle --minify --outfile=./dist/index.min.js",
"build:types": "tsc",
"eslint": "eslint",
"prettier:check": "prettier . --check",
"prettier:write": "prettier . --write"
},
"type": "module",
"types": "./src/index.d.ts",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"esbuild": "0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5",
"typescript-eslint": "^8.58.0"
}
}