acture-build-tier 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "acture-build-tier",
3
+ "version": "1.1.0",
4
+ "description": "Build-time tier mirror. Scans .ts source for @stable / @experimental / @internal / @deprecated JSDoc tags on defineCommand calls and mirrors them into the runtime command's tier metadata. Ships an esbuild plugin and a Vite plugin.",
5
+ "license": "Apache-2.0",
6
+ "author": "Thor Whalen",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/thorwhalen/acture.git",
10
+ "directory": "packages/build-tier"
11
+ },
12
+ "homepage": "https://github.com/thorwhalen/acture#readme",
13
+ "bugs": "https://github.com/thorwhalen/acture/issues",
14
+ "type": "module",
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "main": "./dist/index.cjs",
21
+ "module": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.js",
27
+ "require": "./dist/index.cjs"
28
+ },
29
+ "./esbuild": {
30
+ "types": "./dist/esbuild.d.ts",
31
+ "import": "./dist/esbuild.js",
32
+ "require": "./dist/esbuild.cjs"
33
+ },
34
+ "./vite": {
35
+ "types": "./dist/vite.d.ts",
36
+ "import": "./dist/vite.js",
37
+ "require": "./dist/vite.cjs"
38
+ },
39
+ "./ast": {
40
+ "types": "./dist/ast.d.ts",
41
+ "import": "./dist/ast.js",
42
+ "require": "./dist/ast.cjs"
43
+ },
44
+ "./package.json": "./package.json"
45
+ },
46
+ "sideEffects": false,
47
+ "peerDependencies": {
48
+ "ts-morph": "^25.0.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "ts-morph": {
52
+ "optional": true
53
+ }
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^22.10.0",
57
+ "ts-morph": "^25.0.0",
58
+ "tsup": "^8.3.0",
59
+ "typescript": "^5.7.0",
60
+ "vitest": "^2.1.0",
61
+ "zod": "^4.0.0",
62
+ "acture-mcp": "1.0.0",
63
+ "acture": "1.1.0"
64
+ },
65
+ "keywords": [
66
+ "acture",
67
+ "tier-system",
68
+ "jsdoc",
69
+ "esbuild-plugin",
70
+ "vite-plugin",
71
+ "stable",
72
+ "experimental",
73
+ "deprecated",
74
+ "internal"
75
+ ],
76
+ "publishConfig": {
77
+ "access": "public"
78
+ },
79
+ "scripts": {
80
+ "build": "tsup",
81
+ "typecheck": "tsc --noEmit",
82
+ "test": "vitest run",
83
+ "clean": "rm -rf dist *.tsbuildinfo"
84
+ }
85
+ }