create-fvtt-module 0.0.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.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "create-fvtt-module",
3
+ "version": "0.0.1",
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-fvtt-module"
16
+ },
17
+ "homepage": "https://github.com/MrVauxs/create-fvtt-module#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/MrVauxs/create-fvtt-module/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-fvtt-module": "./dist/bin.js"
35
+ },
36
+ "files": [
37
+ "dist/",
38
+ "templates/",
39
+ "addons/",
40
+ "LICENSE",
41
+ "README.md"
42
+ ],
43
+ "scripts": {
44
+ "build": "tsc",
45
+ "build:watch": "tsc --watch",
46
+ "prepublishOnly": "npm run build",
47
+ "prepack": "npm run build",
48
+ "dev": "bun src/bin.ts \"My New Module\" --auto-id"
49
+ },
50
+ "devDependencies": {
51
+ "@types/bun": "latest",
52
+ "@types/node": "^20",
53
+ "@clack/prompts": "^1.0.0-alpha.9",
54
+ "kolorist": "^1.8.0",
55
+ "typescript": "^5"
56
+ },
57
+ "peerDependencies": {
58
+ "typescript": "^5"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
62
+ }
63
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "id": "module-template",
3
+ "title": "Module Template",
4
+ "description": "",
5
+ "authors": [
6
+ {
7
+ "name": "Vauxs",
8
+ "discord": "vauxs",
9
+ "twitter": "@ThatVauxs",
10
+ "email": "mrvauxs@gmail.com",
11
+ "ko-fi": "MrVauxs",
12
+ "patreon": "MrVauxs"
13
+ }
14
+ ],
15
+ "version": "dev",
16
+ "compatibility": {
17
+ "minimum": "13",
18
+ "verified": "13"
19
+ },
20
+ "esmodules": [],
21
+ "styles": [],
22
+ "relationships": {},
23
+ "packs": [],
24
+ "packFolders": [],
25
+ "flags": {
26
+ "canUpload": true,
27
+ "hotReload": {
28
+ "extensions": ["css", "json"],
29
+ "paths": ["styles"]
30
+ }
31
+ },
32
+ "url": "",
33
+ "bugs": "",
34
+ "manifest": "",
35
+ "download": ""
36
+ }
@@ -0,0 +1,2 @@
1
+ FOUNDRY_PORT=30000 # Which port your FoundryVTT instance is hosted at.
2
+ DEV_PORT=30001 # Which port you want to use for development.
File without changes