-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.15 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@ghost-fvtt/foundry-publish",
"version": "3.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 --ext .ts,.js,.cjs ",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier './**/*.(ts|js|cjs|mjs|json|scss|yml|yaml)'",
"prepare": "husky install",
"postinstall": "npx playwright install chromium",
"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"
},
"lint-staged": {
"*.(cjs|js|ts)": "eslint --fix",
"*.(json|yml)": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"commitlint": "19.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"standard-version": "9.5.0",
"typescript": "5.7.2"
},
"dependencies": {
"@playwright/test": "^1.39.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"fp-ts": "^2.12.2",
"fs-extra": "^11.0.0",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"playwright-chromium": "^1.18.1"
},
"engines": {
"node": "^18.12.0 || ^20.6.1 || ^22.0.0",
"npm": "^9.0.0 || ^10.0.0"
},
"packageManager": "^[email protected]"
}