This repository was archived by the owner on Feb 22, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.58 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "magicitems",
"title": "Magic Items",
"description": "Module that adds the ability to create magical items with spells or feats that belong to the item itself, such as staffs or magic wands, which will be automatically inherited from the character who owns the item.",
"version": "4.0",
"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.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typhonjs-fvtt/runtime": "^0.1.2",
"@typhonjs-fvtt/svelte-standard": "^0.1.0",
"moment": "^2.30.1",
"svelte": "^4.2.12",
"svelte-select": "^5.8.3",
"svelte-virtual-scroll-list": "^1.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@foundryvtt/foundryvtt-cli": "^1.0.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typhonjs-config/eslint-config": "^0.6.3",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prettier": "^5.1.3",
"fancy-log": "^2.0.0",
"husky": "^8.0.3",
"jquery": "^3.7.1",
"jsdoc": "^4.0.2",
"less": "^4.2.0",
"less-watch-compiler": "^1.16.3",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5",
"rollup": "^3.29.4",
"sass": "^1.71.1",
"svelte-dnd-action": "^0.9.40",
"svelte-preprocess": "^5.1.3",
"vite": "^4.5.3",
"vite-plugin-clean": "^1.0.0",
"vite-plugin-run": "^0.5.1",
"vite-plugin-static-copy": "^0.17.0",
"yargs": "^17.7.2"
},
"browserslist": [
">5%",
"not IE 11"
],
"scripts": {
"build": "node ./utils/clean.mjs && vite build",
"build:watch": "node ./utils/clean.mjs && vite build --watch --mode development",
"build:watchWithDb": "node ./utils/clean.mjs && npm run build:db && vite build --watch --mode development",
"dev": "vite serve",
"build:clean": "node ./utils/packs.mjs package clean",
"build:db": "node ./utils/packs.mjs package pack",
"build:json": "node ./utils/packs.mjs package unpack",
"eslint": "eslint .",
"prepare": "husky install",
"prettier-format": "prettier --config .prettierrc.json --write \"./src/**/*.{js,mjs,json,scss,css}\"",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --ext .js ./src --fix"
},
"lint-staged": {
"*.{js,css}": "prettier --write"
}
}