-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.81 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "archmage",
"version": "1.0.0",
"description": "CSS compiler for the Archmage system",
"module": "./dist/components.vue.es.js",
"exports": {
".": {
"import": "./dist/components.vue.es.js"
}
},
"scripts": {
"build": "gulp build",
"build:prod": "gulp prod",
"build:noVite": "gulp noVite",
"css": "gulp css",
"watch": "gulp",
"watch:noVite": "gulp noViteWatch",
"gulp": "gulp",
"files": "gulp files",
"yaml": "gulp yaml",
"compilePacks": "gulp compilePacks",
"extractPacks": "gulp extractPacks",
"vite:dev": "vite --config vite.config.preview.mjs",
"vite:watch": "vite build --watch",
"vite:build": "vite build",
"vite:build:preview": "vite build --config vite.config.preview.mjs",
"vite:build:prod": "vite build --config vite.config.prod.mjs",
"lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"lint:warnings": "eslint --max-warnings 0 --ext .js,.cjs,.mjs .",
"lint:errors": "eslint --quiet --ext .js,.cjs,.mjs .",
"lint:fix:errors": "eslint --quiet --ext .js,.cjs,.mjs --fix ."
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"author": "Asacolips",
"license": "MIT",
"private": true,
"dependencies": {
"@vueform/multiselect": "^2.6.6",
"@vueform/slider": "^2.1.10",
"lodash": "^4.17.21",
"vue": "^3.4.19"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@foundryvtt/foundryvtt-cli": "^3.0.0",
"@stylistic/eslint-plugin-js": "^1.7.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"babel-loader": "^8.2.5",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-vue": "^9.1.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-declare": "^0.3.0",
"gulp-minify": "^3.1.0",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-vue-single-file-component": "^1.2.4",
"gulp-webp": "^4.0.1",
"gulp-wrap": "^0.15.0",
"gulp-yaml": "^2.0.4",
"js-yaml": "^4.1.0",
"merge-stream": "^2.0.0",
"nedb": "^1.8.0",
"path": "^0.12.7",
"sass": "^1.52.3",
"through2": "^4.0.2",
"vite": "^5.1.4",
"vue-loader": "^17.4.2",
"yargs": "^17.5.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"vue/no-mutating-props": 0
}
}
}