-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.8 KB
/
package.json
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": "[email protected]"
}
],
"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": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/js": "9.22.0",
"@types/node": "22.13.10",
"commitlint": "19.8.0",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.3",
"rimraf": "6.0.1",
"standard-version": "9.5.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^13.0.0",
"zod": "^3.24.2"
},
"engines": {
"node": "^20.6.1 || ^22.0.0",
"npm": "^9.0.0 || ^10.0.0 || ^11.0.0"
},
"packageManager": "^[email protected]"
}