-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"description": "Easily create Heroes, Villains and everything in between.",
"license": "MIT",
"private": false,
"version": "1.5.9",
"type": "module",
"authors": [
{
"name": "Noel da Costa",
"discord": "@geoidesic"
}
],
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/svelte-standard/*"
},
"dependencies": {
"@floating-ui/core": "^1.6.1",
"@typhonjs-fvtt/runtime": "^0.1.3",
"@typhonjs-fvtt/svelte-standard": "^0.1.0",
"svelte": "^4.2.16",
"svelte-floating-ui": "^1.5.8",
"svelte-select": "^5.8.3"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^9.280.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^9.2.0",
"html2pug": "^4.0.0",
"prettier": "^3.2.5",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6",
"svelte-preprocess": "^5.1.4",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"browserslist": [
">5%",
"not IE 11"
],
"scripts": {
"dev": " > dist/style.css; /* blank the style.css to enable HMR for css in dev */; vite;",
"build": "vite build",
"eslint": "eslint .",
"release": "node release.js"
}
}