-
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.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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": "cmcutter",
"description": "CM Cutter",
"version": "1.0.0",
"author": "Tomachi",
"bugs": {
"url": "https://github.com/tomacheese/cmcutter/issues"
},
"devDependencies": {
"@book000/eslint-config": "1.14.9",
"@book000/node-utils": "1.24.123",
"@types/config": "4.4.0",
"@types/node": "24.12.2",
"config": "4.4.1",
"eslint": "10.2.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "64.0.0",
"prettier": "3.8.3",
"run-z": "2.1.0",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"homepage": "https://github.com/tomacheese/cmcutter",
"main": "dist/index.js",
"packageManager": "pnpm@10.33.0",
"private": true,
"repository": {
"url": "git@github.com:tomacheese/cmcutter.git",
"type": "git"
},
"scripts": {
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"dev": "tsx watch ./src/main.ts",
"fix": "run-z fix:prettier,fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"preinstall": "npx only-allow pnpm",
"start": "tsx ./src/main.ts"
}
}