-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
54 lines (54 loc) · 1.43 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
49
50
51
52
53
54
{
"name": "tidy5e-sheet",
"title": "Tidy5e Sheet",
"description": "Replaces the default D&D 5e character and NPC sheet with an alternate layout focused on a cleaner UI",
"version": "0.9.18",
"main": "module.js",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"type": "module",
"author": "",
"contributors": [],
"imports": {
"#runtime/*": "@typhonjs-fvtt/runtime/*",
"#standard/*": "@typhonjs-fvtt/svelte-standard/*"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@typhonjs-fvtt/runtime": "^0.1.0",
"@typhonjs-fvtt/svelte-standard": "^0.1.0",
"svelte": "^4.0.0",
"svelte-virtual-scroll-list": "^1.1.0"
},
"devDependencies": {
"@typhonjs-config/eslint-config": "^0.3.0",
"eslint": "^8",
"husky": "^8.0.3",
"jquery": "^3.6.4",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"sass": "^1.63.6",
"svelte-dnd-action": "^0.9.18",
"svelte-preprocess": "^5",
"vite": "^4.4.0",
"vite-plugin-clean": "^1.0.0",
"vite-plugin-run": "^0.4.1",
"vite-plugin-static-copy": "^0.16.0"
},
"browserslist": [
">5%",
"not IE 11"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"eslint": "eslint .",
"prepare": "husky install",
"prettier-format": "prettier --config .prettierrc --write \"./src/**/*.{ts,js,mjs,json,scss,css}\""
},
"lint-staged": {
"*.{js,css}": "prettier --write"
}
}