-
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.11 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.11 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": "create-next2d-app",
"version": "2.4.2",
"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",
"type": "module",
"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",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Next2D/create-next2d-app.git"
},
"files": [
"dist"
],
"bin": {
"create-next2d-app": "dist/index.js"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@eslint/js": "^10.0.1",
"@types/node": "^26.4.1",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.9.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.12.0",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
}
}