-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
89 lines (89 loc) · 2.34 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
85
86
87
88
89
{
"name": "@ghost-fvtt/foundry-factory",
"version": "1.4.3",
"description": "An interactive command line tool to bootstrap modules and systems for Foundry Virtual Tabletop",
"main": "./dist/index.mjs",
"bin": {
"foundry-factory": "dist/index.mjs"
},
"type": "module",
"dependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"chalk": "^5.0.0",
"commander": "^12.0.0",
"fs-extra": "^11.0.0",
"inquirer": "^12.0.0",
"nunjucks": "^3.2.3",
"ora": "^8.0.0",
"standard-version": "^9.3.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "12.1.1",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "9.0.7",
"@types/nunjucks": "3.2.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "2.8.8",
"rollup": "4.27.4",
"rollup-plugin-preserve-shebang": "1.0.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vitest": "2.1.5"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"lint": "eslint --ext .ts,.js,.cjs,.mjs .",
"lint:fix": "eslint --ext .ts,.js,.cjs,.mjs --fix .",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --reporter=default --reporter=junit --outputFile=junit.xml",
"format": "prettier --write './**/*.(ts|js|cjs|mjs|json)'",
"prepare": "husky install"
},
"contributors": [
{
"name": "Johannes Loher",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/ghost91-/foundry-factory",
"repository": {
"type": "git",
"url": "git+https://github.com/ghost91-/foundry-factory.git"
},
"bugs": {
"url": "https://github.com/ghost91-/foundry-factory/issues"
},
"keywords": [
"foundry",
"foundry-vtt",
"cli"
],
"files": [
"template",
"dist",
"LICENSES",
".reuse"
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.(cjs|mjs|js|ts)": "eslint --fix",
"*.(json)": "prettier --write"
},
"engines": {
"node": "^16.17.1 || ^18.12.0 || ^20.0.0 || ^22.0.0",
"npm": "^10.0.0"
},
"packageManager": "^[email protected]"
}