mirror of
https://github.com/CharlesWiltgen/Axiom.git
synced 2026-09-20 19:58:20 +08:00
46dbd95b28
Node 24 has stable TypeScript stripping (no flags needed), eliminating the need for Deno as a separate runtime. All scripts now use #!/usr/bin/env node. - Add .mise.toml pinning Node 24 - Replace regex frontmatter parser with gray-matter in build-codex.ts - Replace Deno.exit/Deno.args with process equivalents in pre-deploy.ts - Update package.json scripts from deno run to node - Remove Deno prerequisite from codex-install docs
31 lines
898 B
JSON
31 lines
898 B
JSON
{
|
|
"name": "axiom",
|
|
"version": "0.1.3",
|
|
"description": "Battle-tested Claude Code skills, commands, and references for modern xOS (iOS, iPadOS, tvOS, watchOS) development — Swift 6, SwiftUI, Liquid Glass, Apple Intelligence, and more",
|
|
"type": "module",
|
|
"scripts": {
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:preview": "vitepress preview docs",
|
|
"test": "node scripts/pre-deploy.ts --static",
|
|
"test:full": "node scripts/pre-deploy.ts",
|
|
"predeploy": "node scripts/pre-deploy.ts",
|
|
"build:codex": "node scripts/build-codex.ts"
|
|
},
|
|
"devDependencies": {
|
|
"gray-matter": "^4.0.3",
|
|
"mermaid": "^11.12.2",
|
|
"vitepress": "2.0.0-alpha.15",
|
|
"vitepress-plugin-mermaid": "^2.0.17"
|
|
},
|
|
"keywords": [
|
|
"claude-code",
|
|
"ios",
|
|
"xcode",
|
|
"plugins",
|
|
"development"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|