-
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.12 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.12 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": "plugin-template",
"version": "2.0.0",
"description": "melonJS plugin template",
"type": "module",
"keywords": [
"2D",
"HTML5",
"javascript",
"TypeScript",
"es6",
"melonjs",
"plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/melonjs/plugin-template.git"
},
"bugs": {
"url": "https://github.com/melonjs/plugin-template/issues"
},
"license": "MIT",
"author": "Olivier Biot (AltByte Pte Ltd)",
"funding": "https://github.com/sponsors/melonjs",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist/",
"src/",
"package.json",
"README.md",
"LICENSE"
],
"peerDependencies": {
"melonjs": ">=18.0.0"
},
"devDependencies": {
"esbuild": "^0.27.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsx scripts/build.ts && npm run types",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"types": "tsc --project tsconfig.build.json"
}
}