-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "create-next2d-app",
"version": "2.2.1",
"description": "Create Next2D apps with no build configuration.",
"author": "Toshiyuki Ienaga<ienaga@next2d.app>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://next2d.app",
"bugs": "https://github.com/Next2D/create-next2d-app/issues",
"keywords": [
"Next2D",
"create-next2d-app"
],
"scripts": {
"lint": "eslint src/index.ts",
"release": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/create-next2d-app.git"
},
"files": [
"dist"
],
"bin": {
"create-next2d-app": "dist/index.js"
},
"dependencies": {
"@types/node": "^25.3.3",
"commander": "14.0.3",
"cross-spawn": "7.0.6",
"fs-extra": "11.3.3",
"picocolors": "^1.1.1",
"semver": "7.7.4",
"validate-npm-package-name": "7.0.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"typescript": "^5.9.3"
}
}