-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "@skarab/detect-package-manager",
"version": "0.0.0-development",
"description": "Detects which package manager (bun, pnpm, yarn, npm) is used.",
"author": {
"name": "skarab42",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/skarab42/detect-package-manager.git"
},
"homepage": "https://github.com/skarab42/detect-package-manager",
"bugs": "https://github.com/skarab42/detect-package-manager/issues",
"funding": "https://github.com/sponsors/skarab42",
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"check": "tsc -p ./tsconfig.json",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --check .",
"check-lint-format": "pnpm check && pnpm lint && pnpm format",
"test": "pnpm check-lint-format && pnpm vitest run",
"prepare": "npx simple-git-hooks",
"release": "semantic-release --branches main"
},
"devDependencies": {
"@skarab/eslint-config": "^1.1.0",
"@skarab/prettier-config": "^1.2.2",
"@skarab/typescript-config": "^1.1.0",
"@types/node": "^18.6.3",
"eslint": "^8.20.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4",
"vite-plugin-vitest-typescript-assert": "^1.1.4",
"vitest": "^0.20.2"
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
},
"packageManager": "[email protected]",
"keywords": [
"package-manager",
"packageManager",
"lock-file",
"lockFile",
"pnpm",
"yarn",
"bun",
"npm"
]
}