move-doctor 0.2.0-dev.1d29f2d
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/CHANGELOG.md +51 -0
- package/LICENSE +21 -0
- package/README.md +40 -0
- package/dist/cli.js +5109 -0
- package/dist/tree-sitter-move.wasm +0 -0
- package/package.json +62 -0
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "move-doctor",
|
|
3
|
+
"version": "0.2.0-dev.1d29f2d",
|
|
4
|
+
"description": "A deterministic linter for Sui Move. Rules cited via the Move Book, with a SKILL.md for coding agents.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"sui",
|
|
7
|
+
"move",
|
|
8
|
+
"sui-move",
|
|
9
|
+
"linter",
|
|
10
|
+
"lint",
|
|
11
|
+
"static-analysis",
|
|
12
|
+
"code-quality",
|
|
13
|
+
"cli",
|
|
14
|
+
"agent",
|
|
15
|
+
"skill"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"homepage": "https://move.doctor",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/notmatical/move-doctor.git",
|
|
22
|
+
"directory": "packages/move-doctor"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/notmatical/move-doctor/issues"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"move-doctor": "dist/cli.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"LICENSE",
|
|
34
|
+
"README.md",
|
|
35
|
+
"CHANGELOG.md"
|
|
36
|
+
],
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"prebuild": "bun scripts/embed-skill.ts",
|
|
42
|
+
"build": "tsup",
|
|
43
|
+
"build:watch": "tsup --watch",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"test": "bun test",
|
|
46
|
+
"clean": "rm -rf dist *.tsbuildinfo src/cli/skill-content.ts"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@clack/prompts": "^1.4.0",
|
|
50
|
+
"agent-install": "^0.0.5",
|
|
51
|
+
"picocolors": "^1.1.1",
|
|
52
|
+
"web-tree-sitter": "0.26.9"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"core": "workspace:*",
|
|
56
|
+
"rules": "workspace:*",
|
|
57
|
+
"tsup": "^8.3.5"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=20"
|
|
61
|
+
}
|
|
62
|
+
}
|