-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.83 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@ghost-fvtt/foundry-publish",
"version": "4.0.0",
"description": "A tool to publish packages for Foundry Virtual Tabletop",
"main": "./dist/index.js",
"bin": {
"foundry-publish": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "npm run eslint",
"lint:fix": "npm run eslint -- --fix",
"eslint": "eslint .",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier './**/*.(ts|js|cjs|mjs|json|scss|yml|yaml)'",
"prepare": "husky install",
"clean": "rimraf dist"
},
"contributors": [
{
"name": "Johannes Loher",
"email": "johannes.loher@fg4f.de"
}
],
"license": "MIT",
"homepage": "https://github.com/ghost-fvtt/foundry-publish",
"repository": {
"type": "git",
"url": "git+https://github.com/ghost-fvtt/foundry-publish.git"
},
"bugs": {
"url": "https://github.com/ghost-fvtt/foundry-publish/issues"
},
"keywords": [
"foundry",
"foundry-vtt",
"cli"
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@eslint/js": "10.0.1",
"@types/node": "24.13.3",
"commitlint": "21.2.1",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"lint-staged": "17.3.0",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"commit-and-tag-version": "13.1.2",
"typescript": "5.9.3",
"typescript-eslint": "8.66.0"
},
"dependencies": {
"chalk": "^6.0.0",
"commander": "^15.0.0",
"zod": "^4.0.0"
},
"engines": {
"node": "^20.6.1 || ^22.0.0 || ^24.0.0",
"npm": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0"
},
"packageManager": "^npm@9.6.7"
}