-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.52 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
49
50
51
52
53
54
55
56
{
"private": true,
"name": "linter",
"version": "1.0.0",
"description": "Linter and Prettier's profile repository.",
"keywords": [
"config",
"eslint",
"eslint-config",
"stylelint",
"stylelint-config",
"prettier",
"prettier-config"
],
"author": "ttionya <git@ttionya.com>",
"license": "ISC",
"homepage": "https://github.com/ttionya/Linter",
"repository": {
"type": "git",
"url": "git+https://github.com/ttionya/Linter.git"
},
"bugs": {
"url": "https://github.com/ttionya/Linter/issues"
},
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"bootstrap": "pnpm install",
"lint": "pnpm run lint:eslint && pnpm run lint:type",
"lint:eslint": "eslint --ext .js,.ts --ignore-pattern \"packages/eslint-config/tests/*/*/**\" .",
"lint:type": "tsc -p tsconfig.test.json",
"beta:enter": "pnpm changeset pre enter beta",
"beta:exit": "pnpm changeset pre exit",
"release": "pnpm changeset publish --tag",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.7.26",
"@ttionya/prettier-config": "workspace:*",
"@ttionya/tsconfig": "^2.2.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"rollup": "^4.21.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
}
}