-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 973 Bytes
/
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
{
"name": "dreams-and-machines",
"version": "1.0.0",
"description": "Unofficial FoundryVTT System implementation for Modiphius's Dreams and Machines system.",
"main": "module/Dreams-And-Machines.mjs",
"repository": "git@github.com:Mezryss/FVTT-Dreams-And-Machines.git",
"author": "Mezryss <mezryss@minalien.dev>",
"license": "CC-BY-SA 4.0",
"private": true,
"type": "module",
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/custom-forms": "^0.2.1",
"@tailwindcss/typography": "^0.5.9",
"@types/jquery": "^3.5.16",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-zip": "^5.1.0",
"handlebars": "^4.7.7",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2"
},
"scripts": {
"build": "tailwindcss -i style/main.css -o Dreams-and-Machines.css",
"lint": "eslint module/ --ext .js,.mjs",
"format": "prettier --editorconfig --write module/"
}
}