-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·60 lines (60 loc) · 2.62 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
{
"name": "simple-weather",
"title": "Foundry VTT Simple Weather",
"version": "1.17.0",
"description": "Add dynamic weather to your FoundryVTT world (on top of Simple Calendar). Note: not affiliated with creators of Simple Calendar.",
"repository": {
"type": "git",
"url": "git+https://github.com/dovrosenberg/foundry-simple-weather.git"
},
"author": "Dov Rosenberg",
"homepage": "https://github.com/dovrosenberg/foundry-simple-weather#readme",
"main": "main.ts",
"scripts": {
"build": "vite build",
"debug": "vite build --minify=false",
"copy": "rm -rf ~/foundryData/Data/modules/simple-weather/* && cp -r $(pwd)/dist/* ~/foundryData/Data/modules/simple-weather",
"linkdata": "ln -s $PWD/dist ~/foundry12data/Data/modules/simple-weather",
"tsc": "tsc --noEmit --skipLibCheck",
"unlinkdata": "unlink ~/foundry12data/Data/modules/simple-weather",
"buildcopy": "npm run build && npm run copy",
"foundry": "node ~/foundry12/resources/app/main.js --dataPath=/home/dov/foundry12data",
"foundry10": "node ~/foundry10/resources/app/main.js --dataPath=/home/dov/foundry10data",
"foundry11": "node ~/foundry11/resources/app/main.js --dataPath=/home/dov/foundry11data",
"foundry12": "node ~/foundry12/resources/app/main.js --dataPath=/home/dov/foundry12data",
"docker": "npm run docker:start",
"docker:start": "docker run -ti -v ${npm_config_foundrydir}:/foundry -v $(pwd)/dist:/foundry/data/Data/modules/simple-weather -p ${npm_config_foundryport}:30000 foundryvtt-dev",
"docker:build": "docker build -t foundryvtt-dev -f ./Dockerfile .",
"version": "node ./scripts/increment-version.js"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "9.280.0",
"@originjs/vite-plugin-commonjs": "^1.0.1",
"@types/marked": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"css-loader": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"foundryvtt-simple-calendar": "^2.4.18",
"marked": "^3.0.7",
"mini-css-extract-plugin": "^2.4.2",
"node-sass": "^9.0.0",
"node-sass-glob-importer": "^5.3.2",
"null-loader": "^4.0.1",
"prettier": "^2.4.1",
"raw-loader": "^4.0.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.45.0",
"sass-loader": "^13.3.2",
"semver-increment": "^1.0.1",
"source-map-loader": "^3.0.0",
"string-replace-loader": "^3.0.3",
"style-loader": "^3.3.0",
"ts-loader": "^9.2.6",
"vite": "^2.7.2",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-html": "3.2.0"
}
}