create-mori
Version:
Quickly create project templates to support the required repositories as much as possible
45 lines • 871 B
JSON
{
"name": "[name]",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "[repo]"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"exports": {
".": "./dist/index.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "npm run build && npm link"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^4.2.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"unbuild": "^3.5.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
}
}