-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "@next2d/builder",
"version": "0.1.2",
"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",
"Multi-platform builder"
],
"scripts": {
"lint": "eslint src/index.ts",
"release": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/builder.git"
},
"bin": {
"@next2d/builder": "dist/index.js"
},
"dependencies": {
"@electron-forge/core": "^7.11.1",
"@types/node": "^25.3.3",
"picocolors": "^1.1.1",
"vite": "^7.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.2",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"typescript": "^5.9.3"
}
}