-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@natoboram/gigachad.ts",
"version": "0.0.0",
"description": "The most gigachad project setup for TypeScript.",
"keywords": [
"dependabot",
"eslint",
"gigachad",
"markdownlint",
"prettier",
"project-template",
"typescript",
"vitest"
],
"homepage": "https://github.com/NatoBoram/gigachad.ts",
"bugs": {
"url": "https://github.com/NatoBoram/gigachad.ts/issues"
},
"license": "Unlicense",
"author": {
"name": "Nato Boram",
"url": "https://github.com/NatoBoram"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/NatoBoram"
},
{
"type": "individual",
"url": "https://paypal.me/NatoBoram/5"
}
],
"files": [
"dist",
"!dist/**/*.test.*"
],
"main": "dist/index.js",
"bin": {
"gigachad": "dist/main.js"
},
"repository": "github:NatoBoram/gigachad.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist docs node_modules tsconfig.tsbuildinfo",
"dev": "tsx ./src/main.ts",
"docker": "pnpm run docker:build && pnpm run docker:run",
"docker:build": "docker build -t gigachad.ts .",
"docker:kill": "docker ps --format '{{.Image}} {{.ID}}' | grep gigachad.ts | awk '{print $2}' | xargs docker kill",
"docker:run": "docker run gigachad.ts",
"docs": "typedoc",
"format": "prettier --write .",
"lint": "eslint . && markdownlint-cli2 \"**/*.md\" && prettier --check .",
"lint:fix": "eslint --fix --quiet .; markdownlint-cli2 \"**/*.md\" --fix; prettier --list-different --write .",
"start": "node dist/main.js",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"markdownlint-cli2": "^0.14.0",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typedoc": "^0.26.10",
"typescript": "5.7.0-beta",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.4"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"module": "dist/index.js"
}