-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.8 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 4.8 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ts-apt",
"version": "0.0.0-semantically-released",
"description": "TypeScript APT and APT-fast package management library",
"author": "Andrew Walsh",
"license": "Apache-2.0",
"keywords": [
"apt",
"apt-cache",
"apt-get",
"apt-fast",
"helper"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/awalsh128"
},
"repository": {
"type": "git",
"url": "https://github.com/awalsh128/ts-apt.git"
},
"files": [
"dist/src",
"!dist/test",
"scripts/dist",
"LICENSE",
"README.md"
],
"bin": {
"apt-fast": "./scripts/dist/apt-fast.sh"
},
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/types.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"require": {
"types": "./dist/src/index.d.cts",
"default": "./dist/src/index.cjs"
}
}
},
"engines": {
"node": ">=24"
},
"scripts": {
"runall": "node ./node_modules/npm-run-all/bin/npm-run-all/index.js",
"build:lib": "tsc -p tsconfig.build.json",
"build:scripts": "tsc -p tsconfig.scripts.json --noEmit",
"build": "npm run -s runall -- build:lib build:scripts",
"clean": "rm -rf dist coverage",
"check:latest-action-pin": "node --experimental-strip-types ./scripts/ops/check_latest_action_pin.mts",
"check:latest-action-pins": "node --experimental-strip-types ./scripts/ops/check_latest_action_pin.mts --scan",
"check:pr": "node --experimental-strip-types ./scripts/ops/pr_checks.mts",
"check:configs": "node --experimental-strip-types ./scripts/ops/check_configs.mts",
"check": "npm run -s runall -- check:latest-action-pins check:pr check:configs",
"gh:auth": "gh auth status >/dev/null 2>&1 || gh auth login --web && gh auth setup-git",
"setup:dev": "node --experimental-strip-types ./scripts/dev/setup_devenv.mts",
"repo:rulesets:download": "node --experimental-strip-types ./scripts/dev/gh_sync.mts download --target rulesets",
"repo:rulesets:upload": "node --experimental-strip-types ./scripts/dev/gh_sync.mts upload --target rulesets",
"repo:settings:download": "node --experimental-strip-types ./scripts/dev/gh_sync.mts download --target settings",
"repo:settings:upload": "node --experimental-strip-types ./scripts/dev/gh_sync.mts upload --target settings",
"repo:vars:download": "node --experimental-strip-types ./scripts/dev/gh_sync.mts download --target vars",
"repo:vars:upload": "node --experimental-strip-types ./scripts/dev/gh_sync.mts upload --target vars",
"repo:tags:download": "node --experimental-strip-types ./scripts/dev/gh_sync.mts download --target tags",
"repo:tags:upload": "node --experimental-strip-types ./scripts/dev/gh_sync.mts upload --target tags",
"repo:all:download": "node --experimental-strip-types ./scripts/dev/gh_sync.mts download --target all",
"repo:all:upload": "node --experimental-strip-types ./scripts/dev/gh_sync.mts upload --target all",
"docs:api": "typedoc --options typedoc.json",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"lint": "eslint src test scripts --ext .ts,.mts",
"typecheck:lib": "tsc -p tsconfig.json --noEmit",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit",
"typecheck": "npm run -s runall -- typecheck:lib typecheck:scripts",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --exclude test/ubuntu.integration.test.ts --exclude test/ubuntu.mutating.integration.test.ts --coverage",
"test:integration": "vitest run test/ubuntu.integration.test.ts test/ubuntu.mutating.integration.test.ts",
"test:integration:docker": "TS_APT_FORCE_DEVCONTAINER=true vitest run test/ubuntu.integration.test.ts test/ubuntu.mutating.integration.test.ts",
"test": "npm run -s test:unit && npm run -s test:integration",
"dev": "vitest"
},
"dependencies": {
"async-mutex": "^0.5.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@devcontainers/cli": "^0.87.0",
"@robingenz/zli": "^0.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"internet-message": "^1.0.0",
"npm-run-all": "^4.1.5",
"semantic-release": "^25.0.5",
"type-coverage": "^2.29.7",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"zod": "^4.4.3"
}
}