-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3 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
{
"name": "@async/hygiene",
"version": "0.1.0",
"description": "Hidden hygiene gates for Async apps, packages, and mixed monorepos.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/async/hygiene.git"
},
"bugs": {
"url": "https://github.com/async/hygiene/issues"
},
"homepage": "https://github.com/async/hygiene#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./pipeline": {
"types": "./dist/pipeline.d.ts",
"import": "./dist/pipeline.js",
"default": "./dist/pipeline.js"
}
},
"bin": {
"async-hygiene": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js",
"hygiene:check": "pnpm run build && node dist/cli.js check",
"pack:check": "npm --cache .async/npm-cache pack --dry-run",
"pipeline:github:check": "async-pipeline github check",
"pipeline:github:generate": "async-pipeline github generate",
"pipeline:publish": "async-pipeline run publish",
"pipeline:publish:github:main": "async-pipeline publish github main --package .",
"pipeline:publish:github:release": "async-pipeline publish github release --package .",
"pipeline:publish:npm": "async-pipeline publish npm --package .",
"pipeline:release-doctor": "async-pipeline run release-doctor",
"pipeline:release:doctor": "async-pipeline release doctor --package .",
"pipeline:release:ensure": "async-pipeline release ensure --package .",
"pipeline:snapshot": "async-pipeline run snapshot",
"pipeline:sync:check": "async-pipeline sync check",
"pipeline:sync:generate": "async-pipeline sync generate",
"pipeline:task:build": "async-pipeline run-task build",
"pipeline:task:github.check": "async-pipeline run-task github.check",
"pipeline:task:hygiene": "async-pipeline run-task hygiene",
"pipeline:task:pack": "async-pipeline run-task pack",
"pipeline:task:release.doctor": "async-pipeline run-task release.doctor",
"pipeline:task:sync.check": "async-pipeline run-task sync.check",
"pipeline:task:test": "async-pipeline run-task test",
"pipeline:verify": "async-pipeline run verify",
"pipeline:verify:force": "async-pipeline run verify --force",
"release:check": "pnpm run pipeline:verify:force",
"test": "pnpm run build && node --test tests/*.test.js",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"dependencies": {
"@arethetypeswrong/cli": "0.18.3",
"@arethetypeswrong/core": "0.18.3",
"dependency-cruiser": "17.4.3",
"github-actionlint": "1.7.12",
"knip": "6.16.1",
"publint": "0.3.21"
},
"devDependencies": {
"@async/pipeline": "0.9.23",
"@types/node": "24.12.4",
"typescript": "6.0.3"
}
}