-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
85 lines (85 loc) · 2.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "foundry-ironsworn",
"version": "1.0.0",
"description": "CSS compiler for the Ironsworn system",
"type": "module",
"scripts": {
"build": "vite build && script/build-packs",
"build:production": "vite build && script/build-packs",
"start": "vite",
"bump": "node script/bump-version.js",
"bump:patch": "node script/bump-version.js patch",
"bump:minor": "node script/bump-version.js minor",
"bump:major": "node script/bump-version.js major",
"postinstall": "patch-package",
"lint:css": "stylelint ./src --config stylelint.config.cjs"
},
"author": "Ben Straub",
"license": "MIT",
"private": true,
"dependencies": {
"@datasworn/core": "../datasworn/pkg/nodejs/@datasworn/core",
"@datasworn/ironsworn-classic": "../datasworn/pkg/nodejs/@datasworn/ironsworn-classic",
"@datasworn/ironsworn-classic-delve": "../datasworn/pkg/nodejs/@datasworn/ironsworn-classic-delve",
"@datasworn/starforged": "../datasworn/pkg/nodejs/@datasworn/starforged",
"@datasworn/sundered-isles": "../datasworn/pkg/nodejs/@datasworn/sundered-isles",
"@foundryvtt/foundryvtt-cli": "^1.0",
"@league-of-foundry-developers/foundry-vtt-types": "github:rsek/foundry-vtt-types#v10-journal",
"@mavrin/stylelint-declaration-use-css-custom-properties": "^3.0.1",
"@tinymce/tinymce-vue": "^5.1.1",
"@types/chroma-js": "^2.4.4",
"@types/eslint": "^8.44.6",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/marked": "^5.0.0",
"@types/node": "^20.11.16",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@typescript/analyze-trace": "^0.10.1",
"@vitejs/plugin-vue": "^5.0.4",
"buffer": "^6.0.3",
"chroma-js": "^2.4.2",
"cssnano": "^6.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^43",
"eslint-plugin-vue": "^9.25.0",
"less": "^4.2.0",
"lodash-es": "^4.17.21",
"marked": "^5.1.0",
"mitt": "^3.0.0",
"node-fetch": "^3.3.2",
"patch-package": "^8.0.0",
"postcss": "^8.4.35",
"postcss-html": "^1.6.0",
"postcss-less": "^6.0.0",
"postcss-preset-env": "^9.5.4",
"prettier": "^2.8.8",
"prettier-config-standard": "^7.0.0",
"sass": "^1.68.0",
"sha.js": "^2.4.11",
"stylelint": "^15.11.0",
"stylelint-config-concentric-order": "^5.2.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"typescript": "<4.9.0",
"vite": "^5.2.12",
"vite-plugin-svg-icons": "^2.0.1",
"vue": "3.4",
"vue-loading-overlay": "^6.0.4",
"vue-tsc": "^1.8.13",
"vue2-animate": "^2.1.4",
"yaml": "^2.3.4"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"showdown": "^2.1.0",
"vite-plugin-vue-devtools": "^7.4.4"
}
}