-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.71 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
{
"name": "@whoj/manage-pkg",
"version": "1.1.0",
"description": "Install & Uninstall package programmatically.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.esm.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json",
"./*": [
"./dist/*",
"./dist/*.d.ts"
]
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"<=4.9": {
"*": [
"./dist/*",
"./*"
]
}
},
"author": {
"name": "Jonson B.",
"email": "www.jbc.bd@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/who-jonson/manage-pkg/issues"
},
"homepage": "https://github.com/who-jonson/manage-pkg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/who-jonson/manage-pkg.git"
},
"keywords": [
"npm",
"pnpm",
"yarn",
"universal"
],
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm build",
"dev": "pnpm build --watch",
"start": "esno src/index.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint \"{**/*,*}.{js,ts}\"",
"lint:fix": "pnpm lint --fix"
},
"devDependencies": {
"@whoj/eslint-config": "^1.2.0",
"@types/node": "^18.15.3",
"bumpp": "^9.0.0",
"eslint": "^8.36.0",
"esno": "^0.16.3",
"tsup": "^6.6.3",
"typescript": "^5.0.2"
},
"dependencies": {
"@antfu/ni": "^0.20.0",
"execa": "^7.1.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@7.29.3"
}