i-plane 1.0.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,50 @@
1
+ {
2
+ "name": "i-plane",
3
+ "version": "1.0.0",
4
+ "description": "CLI \u0434\u043b\u044f Plane \u0441 \u043f\u043b\u043e\u0442\u043d\u044b\u043c \u0432\u044b\u0432\u043e\u0434\u043e\u043c \u043f\u043e\u0434 \u0430\u0433\u0435\u043d\u0442\u0430",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "iiiokojiadbi <iiiokojiadbi@yandex.ru>",
8
+ "contributors": [
9
+ "Claude (Anthropic) <noreply@anthropic.com>"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/iiiokojiadbi/i-plane.git"
14
+ },
15
+ "bin": {
16
+ "i-plane": "./dist/cli.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "AGENTS.md",
21
+ "CLAUDE.md"
22
+ ],
23
+ "engines": {
24
+ "node": ">=20"
25
+ },
26
+ "packageManager": "bun@1.4.0",
27
+ "scripts": {
28
+ "build": "bun build src/cli.ts --target=node --outfile=dist/cli.js --minify --external undici",
29
+ "check": "tsc --noEmit",
30
+ "lint": "biome check .",
31
+ "format": "biome format --write .",
32
+ "release": "node scripts/release.mjs",
33
+ "test": "bun test"
34
+ },
35
+ "devDependencies": {
36
+ "@biomejs/biome": "2.5.12",
37
+ "@types/markdown-it": "14.2.0",
38
+ "@types/node": "24.13.4",
39
+ "@types/turndown": "5.0.6",
40
+ "typescript": "7.0.2"
41
+ },
42
+ "optionalDependencies": {
43
+ "undici": "8.10.2"
44
+ },
45
+ "dependencies": {
46
+ "markdown-it": "15.0.1",
47
+ "turndown": "7.2.4",
48
+ "turndown-plugin-gfm": "1.0.2"
49
+ }
50
+ }