forked from fantasycalendar/FoundryVTT-Sequencer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "sequencer",
"version": "1.0.0",
"description": "",
"license": "MIT",
"private": true,
"type": "module",
"author": "Fantasy Computerworks (https://github.com/fantasycalendar)",
"contributors": [
"Wasp (https://github.com/haxxer)"
],
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@typhonjs-fvtt/runtime": "^0.0.22",
"@typhonjs-fvtt/svelte-standard": "^0.0.18",
"svelte": "^3.55.0",
"svelte-virtual-scroll-list": "^1.1.0"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"@typhonjs-config/eslint-config": "^0.3.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"svelte-dnd-action": "^0.9.18",
"svelte-preprocess": "^5",
"vite": "^4"
},
"browserslist": [
">5%",
"not IE 11"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"eslint": "eslint .",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,css}": "prettier --write"
}
}