generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
45 lines (45 loc) · 1.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
{
"name": "sequencer",
"version": "1.0.0",
"description": "",
"license": "MIT",
"private": true,
"type": "module",
"types": "typings/types.d.ts",
"author": "Fantasy Computerworks (https://github.com/fantasycalendar)",
"contributors": [
"Wasp (https://github.com/haxxer)"
],
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/svelte-standard/*"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@typhonjs-fvtt/runtime": "^0.1.3",
"@typhonjs-fvtt/svelte-standard": "0.1.0",
"potpack": "^2.0.0",
"svelte": "^4.2.0",
"svelte-virtual-scroll-list": "^1.1.0"
},
"devDependencies": {
"@typhonjs-config/eslint-config": "^0.6.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8",
"svelte-preprocess": "^5",
"vite": "^4.4.0",
"@league-of-foundry-developers/foundry-vtt-types": "^9.238.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"svelte-dnd-action": "^0.9.18"
},
"browserslist": [
">5%",
"not IE 11"
],
"scripts": {
"build": "vite build",
"dev": "vite"
}
}