-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.79 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
{
"name": "@alexaegis/autotool-plugin-github",
"description": "My github config",
"version": "0.12.0",
"license": "MIT",
"private": false,
"archetype": {
"platform": "node",
"framework": "autotool",
"language": "ts",
"kind": "lib"
},
"keywords": [
"autotool-plugin",
"github",
"managed-by-autotool"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"lint:depcheck_": "depcheck",
"lint:es": "turbo run lint:es_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
"lint:format": "turbo run lint:format_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
"lint:md": "turbo run lint:md_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"lint:tsc_": "tsc --noEmit",
"publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"publint_": "publint dist",
"test": "turbo run test_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"test_": "vitest --passWithNoTests --coverage --run",
"test:watch": "vitest --passWithNoTests --coverage",
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"build": "turbo run build-lib_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"build-lib_": "vite build",
"format": "turbo run format_ --concurrency 16 --filter @alexaegis/autotool-plugin-github",
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write ."
},
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./bug_report": "./static/bug_report.yml",
"./cicd": "./static/cicd.yml",
"./feature_request": "./static/feature_request.yml",
"./funding": "./static/funding.yml",
"./package.json": "./package.json",
"./readme": "./readme.md"
},
"dependencies": {
"@alexaegis/logging": "^0.11.0",
"autotool-plugin": "^0.6.1"
},
"devDependencies": {
"@alexaegis/eslint-config-vitest": "workspace:^",
"@alexaegis/ts": "workspace:^",
"@alexaegis/vite": "workspace:^",
"@alexaegis/vitest": "workspace:^",
"@types/node": "^22.10.1",
"publint": "^0.2.12",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vitest": "^2.1.6"
}
}