create-lt-adventure 0.0.8 → 0.0.10
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/dist/bin.js +0 -0
- package/package.json +66 -66
- package/templates/vite/src/module.css +8 -5
package/dist/bin.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-lt-adventure",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A CLI tool to scaffold Foundry VTT modules",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"foundry-vtt",
|
|
7
|
-
"module",
|
|
8
|
-
"scaffold",
|
|
9
|
-
"cli"
|
|
10
|
-
],
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"author": "mrvauxs",
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "https://github.com/MrVauxs/create-lt-adventure"
|
|
16
|
-
},
|
|
17
|
-
"homepage": "https://github.com/MrVauxs/create-lt-adventure#readme",
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/MrVauxs/create-lt-adventure/issues"
|
|
20
|
-
},
|
|
21
|
-
"type": "module",
|
|
22
|
-
"main": "./dist/index.js",
|
|
23
|
-
"exports": {
|
|
24
|
-
".": {
|
|
25
|
-
"import": "./dist/index.js",
|
|
26
|
-
"types": "./dist/index.d.ts"
|
|
27
|
-
},
|
|
28
|
-
"./bin": {
|
|
29
|
-
"import": "./dist/bin.js",
|
|
30
|
-
"types": "./dist/bin.d.ts"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"bin": {
|
|
34
|
-
"create-lt-adventure": "./dist/bin.js"
|
|
35
|
-
},
|
|
36
|
-
"files": [
|
|
37
|
-
"dist/",
|
|
38
|
-
"templates/",
|
|
39
|
-
"addons/",
|
|
40
|
-
"LICENSE",
|
|
41
|
-
"README.md"
|
|
42
|
-
],
|
|
43
|
-
"scripts": {
|
|
44
|
-
"create": "bun src/bin.ts",
|
|
45
|
-
"build": "tsc",
|
|
46
|
-
"build:watch": "tsc --watch",
|
|
47
|
-
"prepublishOnly": "npm run build",
|
|
48
|
-
"prepack": "npm run build",
|
|
49
|
-
"dev": "bun src/bin.ts \"My New Module\" --auto-id"
|
|
50
|
-
},
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"kolorist": "^1.8.0",
|
|
53
|
-
"@clack/prompts": "^1.0.0-alpha.9"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@types/bun": "latest",
|
|
57
|
-
"@types/node": "^20",
|
|
58
|
-
"typescript": "^5"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"typescript": "^5"
|
|
62
|
-
},
|
|
63
|
-
"engines": {
|
|
64
|
-
"node": ">=18.0.0"
|
|
65
|
-
}
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "create-lt-adventure",
|
|
3
|
+
"version": "0.0.10",
|
|
4
|
+
"description": "A CLI tool to scaffold Foundry VTT modules",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"foundry-vtt",
|
|
7
|
+
"module",
|
|
8
|
+
"scaffold",
|
|
9
|
+
"cli"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "mrvauxs",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/MrVauxs/create-lt-adventure"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/MrVauxs/create-lt-adventure#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/MrVauxs/create-lt-adventure/issues"
|
|
20
|
+
},
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "./dist/index.js",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts"
|
|
27
|
+
},
|
|
28
|
+
"./bin": {
|
|
29
|
+
"import": "./dist/bin.js",
|
|
30
|
+
"types": "./dist/bin.d.ts"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"bin": {
|
|
34
|
+
"create-lt-adventure": "./dist/bin.js"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"dist/",
|
|
38
|
+
"templates/",
|
|
39
|
+
"addons/",
|
|
40
|
+
"LICENSE",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
43
|
+
"scripts": {
|
|
44
|
+
"create": "bun src/bin.ts",
|
|
45
|
+
"build": "tsc",
|
|
46
|
+
"build:watch": "tsc --watch",
|
|
47
|
+
"prepublishOnly": "npm run build",
|
|
48
|
+
"prepack": "npm run build",
|
|
49
|
+
"dev": "bun src/bin.ts \"My New Module\" --auto-id"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"kolorist": "^1.8.0",
|
|
53
|
+
"@clack/prompts": "^1.0.0-alpha.9"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/bun": "latest",
|
|
57
|
+
"@types/node": "^20",
|
|
58
|
+
"typescript": "^5"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"typescript": "^5"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=18.0.0"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--((moduleId))-checks-color: #074e4b;
|
|
2
|
+
--((moduleId))-checks-color-light: #074e4b;
|
|
3
|
+
--((moduleId))-checks-color-dark: hsl(69 58 47);
|
|
3
4
|
}
|
|
4
5
|
|
|
5
6
|
body.theme-light .((moduleId)).Checks-and-Saves {
|
|
6
7
|
font-weight: bold;
|
|
7
|
-
color: var(--((moduleId))-checks-color);
|
|
8
|
+
color: var(--((moduleId))-checks-color-light);
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
body.theme-dark .((moduleId)).Checks-and-Saves {
|
|
11
|
-
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
color: var(--((moduleId))-checks-color-dark);
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
.themed.theme-dark .((moduleId)).Checks-and-Saves {
|
|
15
|
-
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
color: var(--((moduleId))-checks-color-dark);
|
|
16
19
|
}
|
|
17
20
|
|
|
18
21
|
.themed.theme-light .((moduleId)).Checks-and-Saves {
|
|
19
22
|
font-weight: bold;
|
|
20
|
-
color: var(--((moduleId))-checks-color);
|
|
23
|
+
color: var(--((moduleId))-checks-color-light);
|
|
21
24
|
}
|
|
22
25
|
|
|
23
26
|
.((moduleId))-journal .journal-entry-content .sidebar,
|