@alessandroraffa/tangyr 0.0.2 → 0.10.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 CHANGED
@@ -1,21 +1,51 @@
1
1
  {
2
2
  "name": "@alessandroraffa/tangyr",
3
- "version": "0.0.2",
4
- "description": "A Software Engineering Discipline for Agent Coding",
5
- "keywords": [
6
- "agent-coding",
7
- "software-engineering",
8
- "ai-agents",
9
- "llm"
3
+ "version": "0.10.0",
4
+ "description": "CLI for the Tangyr discipline — install and manage operating kits for AI coding tools",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "tangyr": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "mappings",
13
+ "README.md",
14
+ "LICENSE"
10
15
  ],
11
- "author": "Alessandro Raffa",
12
- "license": "SEE LICENSE IN LICENSE",
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "prepack": "npm run build",
19
+ "install-hooks": "tsx install-hooks.ts",
20
+ "tangyr": "tsx src/index.ts",
21
+ "setup-global": "tsx setup-global.ts",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
13
28
  "repository": {
14
29
  "type": "git",
15
- "url": "git+https://github.com/alessandroraffa/tangyr.git"
30
+ "url": "https://github.com/alessandroraffa/tangyr-cli.git"
16
31
  },
17
- "homepage": "https://github.com/alessandroraffa/tangyr",
18
- "bin": {
19
- "tangyr": "./bin/tangyr.js"
20
- }
32
+ "homepage": "https://github.com/alessandroraffa/tangyr-cli#readme",
33
+ "bugs": {
34
+ "url": "https://github.com/alessandroraffa/tangyr-cli/issues"
35
+ },
36
+ "devDependencies": {
37
+ "@iarna/toml": "^2.2.5",
38
+ "@inquirer/prompts": "^8.4.1",
39
+ "chalk": "^5.6.2",
40
+ "commander": "^14.0.3",
41
+ "execa": "^9.0.0",
42
+ "glob": "^13.0.6",
43
+ "memfs": "^4.0.0",
44
+ "tsup": "^8.5.1",
45
+ "tsx": "^4.21.0",
46
+ "typescript": "^5.0.0",
47
+ "vitest": "^3.0.0",
48
+ "yaml": "^2.8.3"
49
+ },
50
+ "dependencies": {}
21
51
  }
package/bin/tangyr.js DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log('tangyr v0.0.1 — not yet released. See https://github.com/alessandroraffa/tangyr');
3
- process.exit(0);