-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpackage.json
34 lines (34 loc) · 1017 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
31
32
33
34
{
"name": "autoanimations",
"description": "This will automatically run most JB2A Animations such as Melee/Ranged Attacks, Spell Attacks, and Instant Spells.",
"license": "MIT",
"private": true,
"type": "module",
"author": "Otigon (https://github.com/otigon)",
"contributors": [
"Otigon (https://github.com/otigon)",
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/standard/*",
"#constants": "./src/constants.js",
"#gameSettings": "./src/gameSettings.js",
"#sessionStorage": "./src/sessionStorage.js"
},
"dependencies": {
"@typhonjs-fvtt/runtime": "^0.2.0-next.6",
"@typhonjs-fvtt/standard": "^0.2.0-next.3",
"svelte": "^4.2.19"
},
"devDependencies": {
"vite": "^5"
},
"browserslist": [">5%", "not IE 11"],
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite",
"eslint": "eslint ."
}
}