@cloud411716/fancy-webnovel 0.1.34 → 0.1.36
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.
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
import { fileURLToPath } from 'url';
|
|
9
9
|
import { dirname, join } from 'path';
|
|
10
10
|
import { existsSync } from 'fs';
|
|
11
|
-
import { notify, llmFollowup, spawnScript } from './
|
|
12
|
-
import { scan, bootstrap, PLATFORM_TABLE, platformLabel } from './
|
|
11
|
+
import { notify, llmFollowup, spawnScript } from './infra.js';
|
|
12
|
+
import { scan, bootstrap, PLATFORM_TABLE, platformLabel } from './templates.js';
|
|
13
13
|
|
|
14
14
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
15
|
-
const SCRIPTS_DIR = join(__dirname, 'scripts');
|
|
15
|
+
const SCRIPTS_DIR = join(__dirname, 'plugins', 'fancy-bootstrap', 'scripts');
|
|
16
16
|
|
|
17
17
|
// ---------------------------------------------------------------------------
|
|
18
18
|
// 路径工具
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud411716/fancy-webnovel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
7
|
-
".": "./
|
|
8
|
-
"./fancy-bootstrap": "./plugins/fancy-bootstrap/index.js"
|
|
7
|
+
".": "./index.js"
|
|
9
8
|
},
|
|
10
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"index.js",
|
|
11
|
+
"infra.js",
|
|
12
|
+
"templates.js",
|
|
13
|
+
"cordis.patch.yml",
|
|
14
|
+
"plugins/"
|
|
15
|
+
],
|
|
11
16
|
"peerDependencies": {
|
|
12
17
|
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2"
|
|
13
18
|
},
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@cloud411716/fancy-webnovel-bootstrap",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"type": "module",
|
|
5
|
-
"main": "index.ts",
|
|
6
|
-
"files": ["index.ts", "scripts/", "cordis.patch.yml"],
|
|
7
|
-
"peerDependencies": {
|
|
8
|
-
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2"
|
|
9
|
-
},
|
|
10
|
-
"peerDependenciesMeta": {
|
|
11
|
-
"@deepseek-ai/dsh-llm": {
|
|
12
|
-
"optional": true
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"dsh": {
|
|
16
|
-
"bundle": {
|
|
17
|
-
"patch": "./cordis.patch.yml"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
File without changes
|
|
File without changes
|