-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
55
56
57
{
"name": "@next2d/builder",
"version": "0.1.11",
"description": "Multi-platform builder for Next2d Framework, supporting export to various platforms such as macOS, Windows, iOS, Android and Web(HTML)",
"author": "Toshiyuki Ienaga <ienaga@next2d.app>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/builder/issues",
"keywords": [
"Next2D",
"JavaScript for Linux",
"JavaScript for MacOS",
"JavaScript for Windows",
"JavaScript for iOS",
"JavaScript for Android",
"JavaScript for Steam",
"JavaScript for Xbox",
"Multi-platform builder"
],
"scripts": {
"lint": "eslint src",
"build": "tsc",
"test": "tsc && node --test \"tests/**/*.test.ts\"",
"prepare": "tsc",
"release": "tsc"
},
"files": [
"dist",
"templates"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/builder.git"
},
"bin": {
"@next2d/builder": "dist/index.js"
},
"dependencies": {
"@electron-forge/core": "^7.11.2",
"@types/node": "^26.4.0",
"picocolors": "^1.1.1",
"vite": "^8.2.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"eslint": "^10.9.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.12.0",
"typescript": "^6.0.3"
}
}