-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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": "pubun",
"version": "2.1.3",
"description": "Asynchronous library with built-in caching to identify available package managers",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"files": [
"build/"
],
"scripts": {
"prebuild": "rimraf build",
"build": "rollup --config",
"postbuild": "dts-bundle-generator --config ./dts-bundle.config.cjs",
"check": "tsc --noEmit",
"lint": "biome check .",
"ci": "pnpm run lint && pnpm run check && pnpm run test:coverage",
"knip": "knip",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Pilaton/pubun.git"
},
"keywords": [
"npm",
"yarn",
"pnpm",
"bun",
"package-manager",
"package.json",
"package-lock.json",
"detect"
],
"author": {
"name": "Pilaton",
"email": "dev@pilaton.com",
"url": "https://pilaton.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Pilaton/pubun/issues",
"email": "dev@pilaton.com"
},
"dependencies": {
"execa": "^9.5.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@tsconfig/node-lts": "^22.0.1",
"@types/node": "^22.10.1",
"@vitest/coverage-istanbul": "^2.1.8",
"dts-bundle-generator": "^9.5.1",
"knip": "^5.39.2",
"rimraf": "^6.0.1",
"rollup": "^4.28.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"type": "module"
}