-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "@next2d/view-generator",
"version": "4.0.1",
"description": "Generate the View class required for routing.",
"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",
"view-generator"
],
"scripts": {
"lint": "eslint src/index.ts",
"release": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/view-generator.git"
},
"bin": {
"@next2d/view-generator": "dist/index.js"
},
"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"
},
"dependencies": {
"@types/node": "^25.3.3",
"picocolors": "^1.1.1"
}
}