@jokeran/frontend-code-skimmer 0.4.9 → 0.5.1

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.
Files changed (3) hide show
  1. package/README.md +367 -367
  2. package/dist/index.js +226 -194
  3. package/package.json +50 -50
package/package.json CHANGED
@@ -1,51 +1,51 @@
1
- {
2
- "name": "@jokeran/frontend-code-skimmer",
3
- "version": "0.4.9",
4
- "description": "Frontend-Code-Skimmer: 不读全文,只看骨架;不搜字符,搜语义关联。支持 Vue2/Vue3/React Hooks",
5
- "publishConfig": {
6
- "registry": "https://registry.npmjs.org/",
7
- "access": "public"
8
- },
9
- "type": "module",
10
- "main": "dist/index.js",
11
- "bin": {
12
- "frontend-code-skimmer": "dist/index.js"
13
- },
14
- "files": [
15
- "dist",
16
- "package.json",
17
- "README.md"
18
- ],
19
- "scripts": {
20
- "build": "tsup",
21
- "dev": "tsx watch src/index.ts",
22
- "start": "node dist/index.js",
23
- "clean": "rm -rf dist",
24
- "test": "tsc -p tsconfig.test.json && node --test .tmp-test/tests/*.test.js",
25
- "eval:snippet": "tsx scripts/run-snippet-eval.ts"
26
- },
27
- "engines": {
28
- "node": ">=18"
29
- },
30
- "dependencies": {
31
- "@babel/parser": "^7.29.0",
32
- "@modelcontextprotocol/sdk": "~1.29.0",
33
- "@vue/compiler-sfc": "^3.5.0",
34
- "acorn": "^8.12.0",
35
- "acorn-jsx": "^5.3.2",
36
- "acorn-walk": "^8.3.0",
37
- "better-sqlite3": "^11.0.0",
38
- "chokidar": "^4.0.0",
39
- "fast-glob": "^3.3.0",
40
- "vue-template-compiler": "^2.7.16",
41
- "zod": "^3.23.8"
42
- },
43
- "devDependencies": {
44
- "@types/acorn": "^4.0.6",
45
- "@types/better-sqlite3": "^7.6.0",
46
- "@types/node": "^22.0.0",
47
- "tsup": "^8.5.1",
48
- "tsx": "^4.19.2",
49
- "typescript": "^5.7.2"
50
- }
1
+ {
2
+ "name": "@jokeran/frontend-code-skimmer",
3
+ "version": "0.5.1",
4
+ "description": "Frontend-Code-Skimmer: 不读全文,只看骨架;不搜字符,搜语义关联。支持 Vue2/Vue3/React Hooks",
5
+ "publishConfig": {
6
+ "registry": "https://registry.npmjs.org/",
7
+ "access": "public"
8
+ },
9
+ "type": "module",
10
+ "main": "dist/index.js",
11
+ "bin": {
12
+ "frontend-code-skimmer": "dist/index.js"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "package.json",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "tsx watch src/index.ts",
22
+ "start": "node dist/index.js",
23
+ "clean": "rm -rf dist",
24
+ "test": "tsc -p tsconfig.test.json && node --test .tmp-test/tests/*.test.js",
25
+ "eval:snippet": "tsx scripts/run-snippet-eval.ts"
26
+ },
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "dependencies": {
31
+ "@babel/parser": "^7.29.0",
32
+ "@modelcontextprotocol/sdk": "~1.29.0",
33
+ "@vue/compiler-sfc": "^3.5.0",
34
+ "acorn": "^8.12.0",
35
+ "acorn-jsx": "^5.3.2",
36
+ "acorn-walk": "^8.3.0",
37
+ "better-sqlite3": "^11.0.0",
38
+ "chokidar": "^4.0.0",
39
+ "fast-glob": "^3.3.0",
40
+ "vue-template-compiler": "^2.7.16",
41
+ "zod": "^3.23.8"
42
+ },
43
+ "devDependencies": {
44
+ "@types/acorn": "^4.0.6",
45
+ "@types/better-sqlite3": "^7.6.0",
46
+ "@types/node": "^22.0.0",
47
+ "tsup": "^8.5.1",
48
+ "tsx": "^4.19.2",
49
+ "typescript": "^5.7.2"
50
+ }
51
51
  }