-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.57 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.57 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
{
"scripts": {
"build": "vite build && gulp build",
"build:vite": "vite build",
"build:vite:watch": "vite build --watch",
"build:watch": "gulp watch",
"clean": "gulp clean",
"content:pack": "gulp pack",
"content:unpack": "gulp unpack",
"symlinks:create": "node ./tools/create-symlink.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 ."
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@modyfi/vite-plugin-yaml": "^1.1.0",
"@foundryvtt/foundryvtt-cli": "^1.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/stream": "^3.0.1",
"@stylistic/eslint-plugin-js": "^1.5.1",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"@vitejs/plugin-vue": "^5.0.5",
"eslint": "^8.55.0",
"eslint-plugin-jsdoc": "^46.9.0",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-dart-sass": "^1.1.0",
"gulp-shell": "^0.8.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-yaml": "^2.0.4",
"merge-stream": "^2.0.0",
"path": "^0.12.7",
"rollup": "^2.79.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vite": "^5.3.4",
"vite-plugin-static-copy": "^1.0.6",
"vite-plugin-watch-and-run": "^1.7.0",
"yaml": "^2.4.5",
"yargs": "^17.7.2"
},
"dependencies": {
"vue": "^3.4.32"
}
}