-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 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": "@dinobros/construct3-plugin-template",
"version": "1.1.2",
"description": "An opinionated ready-to-use Construct 3 Plugin template based on TypeScript & Vite.js. 🎮",
"keywords": [
"Construct3",
"JavaScript",
"TypeScript",
"Vite.js",
"ESLint",
"Husky",
"Plugin",
"Template"
],
"homepage": "https://github.com/Dinobros/construct3-plugin-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Dinobros/construct3-plugin-template.git"
},
"bugs": {
"url": "https://github.com/Dinobros/construct3-plugin-template/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "matteo@dinobros.com",
"url": "https://www.dinobros.com/"
},
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "concurrently -P --kill-others --prefix \"[{name}]\" --prefix-colors \"magenta,cyan\" --names \"BUILD,SERVER\" \"vite build --watch\" \"vite preview --outDir .build --port 5173 {@}\" --",
"build:only": "vite build",
"build": "vite build --sourcemap false && mkdir -p dist/ && cd .build/ && zip -r ../dist/Dinobros_Construct3PluginTemplate-v$(jq -r .version ../package.json).c3addon *",
"preview": "vite preview",
"typecheck": "tsc",
"lint": "eslint .",
"test": "vitest run",
"prepare": "husky",
"ci": "bun install --frozen-lockfile"
},
"devDependencies": {
"@byloth/eslint-config-typescript": "^3.2.2",
"@eslint/compat": "^2.0.1",
"@types/node": "^22.19.5",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"private": true
}