-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.39 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "todoctor",
"description": "CLI tool to analyze and report TODO comments in JavaScript and TypeScript Git repositories",
"type": "module",
"version": "1.3.1",
"repository": "azat-io/todoctor",
"author": "Azat S. <to@azat.io>",
"license": "MIT",
"keywords": [
"analysis",
"fixme",
"git-analysis",
"source-code-analysis",
"technical-debt",
"todo-comment",
"todo",
"visualization"
],
"bin": {
"todoctor": "./bin/todoctor.js"
},
"scripts": {
"start": "pnpm run /^start:/",
"start:preview": "vite",
"build": "pnpm run /^build:/",
"build:lib": "cargo build --release && node \"./scripts/create-packages.js\" && node \"./scripts/build.js\"",
"build:preview": "vite build",
"docs:build": "DOCS=true vite build",
"release": "pnpm release:check && pnpm release:version && pnpm release:git",
"release:check": "pnpm test && pnpm run build",
"release:git": "pnpm release:git:add && pnpm release:git:commit && pnpm release:git:tag && pnpm release:git:push",
"release:git:add": "git add .",
"release:git:commit": "git commit -m \"build: publish v$(node -p \"require('./package.json').version\")\"",
"release:git:tag": "git tag v$(node -p \"require('./package.json').version\")",
"release:git:push": "git push --follow-tags && git push origin v$(node -p \"require('./package.json').version\")",
"release:version": "changelogen --output changelog.md --release --no-commit --no-tag",
"ci:changelog": "changelogithub",
"ci:clear": "clear-package-json package.json --output package.json",
"test": "pnpm run /^test:/",
"test:format": "pnpm run /^test:format:/",
"test:format:js": "prettier --check \"**/*.{svelte,js,ts,css,json,md,yml}\"",
"test:format:rust": "cargo fmt -- --check",
"test:css": "stylelint **/*.{svelte,css}",
"test:js": "eslint \"**/*.{svelte,js,ts}\"",
"test:spelling": "cspell \"**/*\"",
"test:svelte": "svelte-check",
"test:types": "tsc --noEmit --pretty",
"test:unit": "cargo test"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"publishConfig": {
"access": "public"
},
"files": [
"./bin",
"./build",
"./dist"
],
"optionalDependencies": {
"@todoctor/darwin-arm64": "workspace:^",
"@todoctor/darwin-x64": "workspace:^",
"@todoctor/linux-arm64": "workspace:^",
"@todoctor/linux-x64": "workspace:^",
"@todoctor/win32-x64": "workspace:^"
},
"devDependencies": {
"@azat-io/eslint-config-typescript": "^1.10.0",
"@azat-io/stylelint-config": "^0.1.1",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@dicebear/core": "^9.2.2",
"@dicebear/open-peeps": "^9.2.2",
"@svelte-plugins/tooltips": "^3.0.1",
"@sveltejs/vite-plugin-svelte": "4.0.0",
"@tanstack/svelte-table": "9.0.0-alpha.10",
"@tanstack/table-core": "9.0.0-alpha.10",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"browserslist": "^4.24.2",
"changelogen": "^0.5.7",
"changelogithub": "^0.13.11",
"chart.js": "^4.4.6",
"clean-publish": "^5.1.0",
"cspell": "^8.15.7",
"date-fns": "^4.1.0",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prefer-let": "^4.0.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-svelte": "^2.46.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vitest": "^0.5.4",
"html-minifier-terser": "^7.2.0",
"lightningcss": "^1.28.1",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-gamut": "^1.3.4",
"stylelint-order": "^6.0.4",
"stylelint-plugin-logical-css": "^1.2.1",
"svelte": "5.1.9",
"svelte-chartjs": "^3.1.5",
"svelte-check": "^4.0.5",
"svelte-eslint-parser": "^0.43.0",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-mock-dev-server": "^1.8.0",
"vite-plugin-singlefile": "^2.0.3"
}
}