This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.6 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": {
"my-cli": "dist/cjs/cli.js"
},
"description": "A boilerplate for a modern™ TypeScript project.",
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@evilmartians/lefthook": "1.7.14",
"@ffflorian/eslint-config": "0.10.3",
"@ffflorian/prettier-config": "0.3.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/babel__core": "^7",
"@types/jasmine": "5.1.4",
"@types/node": "~20",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"babel-eslint": "10.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jasmine": "4.2.0",
"eslint-plugin-jsdoc": "50.0.1",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"eslint-plugin-unused-imports": "4.1.3",
"jasmine": "5.2.0",
"oxlint": "0.9.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.1.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"engines": {
"node": ">= 14.16"
},
"files": [
"dist"
],
"keywords": [
"cli",
"typescript"
],
"license": "GPL-3.0",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"name": "@ffflorian/ts-boilerplate",
"prettier": "@ffflorian/prettier-config",
"private": true,
"repository": "https://github.com/ffflorian/ts-boilerplate.git",
"scripts": {
"build": "yarn build:cjs && yarn build:mjs && yarn generate:packagejson",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:mjs": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:other && yarn fix:ts",
"fix:other": "yarn prettier --write",
"fix:ts": "yarn lint:ts --fix",
"generate:packagejson": "./bin/generate-hybrid-package-json.sh",
"lint": "yarn lint:ts && yarn lint:ts:spec && yarn lint:other",
"lint:other": "yarn prettier --list-different",
"lint:ts": "oxlint --ignore-path .gitignore src/",
"lint:ts:spec": "oxlint --ignore-path .gitignore --config .eslintrc.spec.json spec/",
"prettier": "prettier \"*.{json,md,yml}\"",
"release": "semantic-release",
"start": "ts-node-esm src/cli.ts",
"test": "exit 0 || ts-node-esm -P tsconfig.jasmine.json node_modules/.bin/jasmine"
},
"type": "module",
"version": "1.0.0",
"packageManager": "yarn@4.0.2"
}