-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.76 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.76 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
{
"name": "scenery",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "dist/scenery.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && vite build",
"dev": "vite build --watch",
"typecheck": "tsc --noEmit",
"lint": "pnpm exec eslint src/**/*.ts",
"lint:fix": "pnpm exec eslint src/**/*.ts --fix",
"format": "pnpm exec prettier --write \"**/*.{js,ts,json,md,scss}\"",
"format:check": "pnpm exec prettier --check \"**/*.{js,ts,json,md,scss}\"",
"knip": "pnpm exec knip",
"link:foundry": "ln -sf $PWD ~/.local/share/FoundryVTT/Data/modules/scenery && echo 'Symlink created! Start Foundry and enable the module.'",
"prepare": "husky || true"
},
"packageManager": "pnpm@9.15.1",
"repository": {
"type": "git",
"url": "git+https://github.com/marcstraube/foundryvtt-scenery.git"
},
"contributors": [
"Marc Straube",
"Vance Cole",
"angedelamort"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marcstraube/foundryvtt-scenery/issues"
},
"homepage": "https://github.com/marcstraube/foundryvtt-scenery#readme",
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^10.0.1",
"@league-of-foundry-developers/foundry-vtt-types": "13.346.0-beta.20251209192131",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.0.0",
"knip": "^6.3.1",
"lint-staged": "^16.0.1",
"prettier": "^3.4.2",
"sass": "^1.97.3",
"typescript": "^6.0.2",
"vite": "^8.0.8"
}
}