-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.54 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
{
"name": "vtm5e",
"version": "5.0.0-prerelease",
"description": "CSS compiler for the Vampire 5e system",
"scripts": {
"gulp": "gulp",
"eslint": "eslint -c .github/linters/.eslintrc.yml *",
"convert-conditions": "fvtt package unpack -n Conditions --inputDirectory ./packs/ --outputDirectory ./packs/unpacked/_conditions && fvtt package pack -n Conditions --inputDirectory ./packs/unpacked/_conditions --outputDirectory ./packs --nedb",
"convert-macros": "fvtt package unpack -n Macros --inputDirectory ./packs/ --outputDirectory ./packs/unpacked/_macros && fvtt package pack -n Macros --inputDirectory ./packs/unpacked/_macros --outputDirectory ./packs --nedb",
"convert-packs": "npm run convert-conditions && npm run convert-macros"
},
"browserslist": [
"last 3 versions"
],
"author": "Ray Ji",
"license": "MIT",
"private": true,
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-less": "^5.0.0",
"less": "^4.2.0"
},
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "git+https://github.com/WoD5E-Developers/wod5e.git"
},
"keywords": [
"vampire-the-masquerade",
"world-of-darkness",
"foundryvtt",
"werewolf-the-apocalypse",
"foundryvtt-system",
"hunter-the-reckoning"
],
"bugs": {
"url": "https://github.com/WoD5E-Developers/wod5e/issues"
},
"homepage": "https://github.com/WoD5E-Developers/wod5e#readme"
}