-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.31 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
{
"name": "@agent-ix/ts-plugin-kit",
"description": "Framework-agnostic plugin/marketplace toolkit: typed git/npm sources, ref/sha pinning, install registry, and default-set reconciliation.",
"version": "0.2.0",
"license": "MIT",
"type": "module",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"packageManager": "pnpm@10.33.4",
"scripts": {
"help": "node scripts/help.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:json": "vitest run --reporter=json --outputFile=report.json || true",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" \"tests/**/*.{ts,tsx,js,jsx}\" && pnpm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "vite build",
"clean": "rm -rf node_modules dist coverage .pnpm-store",
"install:frozen": "pnpm install --frozen-lockfile",
"update-lock": "pnpm install --lockfile-only",
"version": "node scripts/build-tools.js version",
"info": "node scripts/build-tools.js info",
"docker:build": "docker build -t ghcr.io/agent-ix/ts-plugin-kit .",
"publish:dry-run": "pnpm publish --dry-run",
"prepublishOnly": "pnpm run build",
"tags": "npm dist-tag ls @agent-ix/ts-plugin-kit --registry http://npm.ix/ || echo '(package not found or registry unavailable)'",
"pkg:add": "pnpm add",
"pkg:add-dev": "pnpm add -D",
"pkg:update": "pnpm update",
"pkg:update-latest": "pnpm update --latest",
"pkg:use-local": "pnpm dlx @agent-ix/js-deps use-local",
"pkg:use-upstream": "pnpm dlx @agent-ix/js-deps use-upstream",
"pkg:refresh-local": "pnpm dlx @agent-ix/js-deps refresh-local"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitest/coverage-v8": "^4.1.8",
"add": "^2.0.6",
"eslint": "^10.4.1",
"eslint-plugin-prettier": "^5.5.6",
"pnpm": "^11.5.2",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-ix/ts-plugin-kit.git"
}
}