-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.22 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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.*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"type": "module",
"bin": {
"gigachad": "dist/main.js"
},
"repository": "github:NatoBoram/gigachad.ts",
"scripts": {
"build": "tsgo",
"build:watch": "tsgo --watch",
"clean": "rm -rf coverage dist docs node_modules tsconfig.tsbuildinfo",
"dev": "node ./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 -r 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:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.0",
"@typescript/native-preview": "7.0.0-dev.20260501.1",
"@vitest/coverage-v8": "4.1.9",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"markdownlint-cli2": "^0.23.0",
"prettier": "^3.9.4",
"typedoc": "^0.28.19",
"typescript": "6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
},
"types": "dist/index.d.ts",
"module": "dist/index.js"
}