ozntel_file-explorer-note-c.../package.json

92 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2021-06-01 21:49:47 +00:00
{
"name": "file-explorer-note-count",
2025-09-22 22:33:01 +00:00
"version": "1.2.4",
"description": "You can see the number of notes under each folder within the file explorer",
"main": "main.js",
"scripts": {
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)'",
2021-06-05 05:47:31 +00:00
"eslint": "eslint . --ext .ts,.tsx --fix",
"dev": "rollup --config rollup.config.js -w",
2021-06-05 06:18:39 +00:00
"release": "release-it",
2024-05-26 16:51:13 +00:00
"build": "NODE_ENV=production rollup --config rollup.config.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
2021-06-05 06:18:39 +00:00
"@release-it/bumper": "^2.0.0",
"@release-it/conventional-changelog": "^2.0.1",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
2021-06-05 05:47:31 +00:00
"@types/json-schema": "^7.0.7",
"@types/node": "^14.14.37",
2021-06-05 05:47:31 +00:00
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"assert-never": "^1.2.1",
2021-06-05 06:18:39 +00:00
"cz-conventional-changelog": "^3.3.0",
2021-06-05 05:47:31 +00:00
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^34.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
2021-06-07 03:44:16 +00:00
"json": "^11.0.0",
"monkey-around": "^2.2.0",
"obsidian": "^0.12.0",
"path-browserify": "^1.0.1",
"prettier": "^2.3.0",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-import-css": "^2.0.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
2021-06-05 06:18:39 +00:00
},
"release-it": {
"hooks": {
"before:init": [
"npm run prettier",
"npm run eslint"
],
"after:bump": [
2021-06-07 03:44:16 +00:00
"json -I -f manifest.json -e \"this.version='${version}'\" -o json-4",
"json -I -f versions.json -e \"this['${version}']='$(cat manifest.json | json minAppVersion)'\" -o json-4",
"git add .",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
2021-06-05 06:18:39 +00:00
},
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "${version}",
"tagAnnotation": "Release v${version}"
2021-06-05 06:18:39 +00:00
},
"npm": {
"publish": false
2021-06-05 06:18:39 +00:00
},
"github": {
"release": true,
"assets": [
"build/main.js",
"build/manifest.json",
"build/styles.css"
],
"releaseName": "${version}"
2021-06-05 06:18:39 +00:00
},
"plugins": {
"@release-it/bumper": {
"out": "manifest.json"
},
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
2021-06-05 06:18:39 +00:00
}
},
"config": {
2021-06-05 06:18:39 +00:00
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
2021-06-05 06:18:39 +00:00
}
}
}