-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 KB
/
package.json
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
{
"name": "@next2d/builder",
"version": "0.0.10",
"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/view-generator/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",
"publish": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/builder.git"
},
"bin": {
"@next2d/builder": "dist/index.js"
},
"dependencies": {
"@electron-forge/core": "^6.4.2",
"@types/node": "^20.9.0",
"picocolors": "^1.0.0",
"vite": "^4.5.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"typescript": "^5.2.2"
}
}