-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.23 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "create-fvtt-module",
"version": "0.0.7",
"description": "A CLI tool to scaffold Foundry VTT modules",
"keywords": [
"foundry-vtt",
"module",
"scaffold",
"cli"
],
"license": "MIT",
"author": "mrvauxs",
"repository": {
"type": "git",
"url": "https://github.com/MrVauxs/create-fvtt-module"
},
"homepage": "https://github.com/MrVauxs/create-fvtt-module#readme",
"bugs": {
"url": "https://github.com/MrVauxs/create-fvtt-module/issues"
},
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./bin": {
"import": "./dist/bin.js",
"types": "./dist/bin.d.ts"
}
},
"bin": {
"create-fvtt-module": "./dist/bin.js"
},
"files": [
"dist/",
"templates/",
"addons/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"dev": "bun src/bin.ts \"My New Module\" --auto-id"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20",
"@clack/prompts": "^1.0.0-alpha.9",
"kolorist": "^1.8.0",
"typescript": "^5"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
}
}