-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.61 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
{
"name": "pleb",
"description": "a casual publisher",
"version": "7.0.0",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"bin": {
"pleb": "bin/pleb.js"
},
"scripts": {
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"",
"prebuild": "npm run clean",
"build": "tsc --build",
"pretest": "npm run lint && npm run build",
"test": "npm run test:only",
"test:only": "node --test --enable-source-maps",
"lint": "eslint",
"prepack": "npm run build",
"prettify": "prettier . --write"
},
"dependencies": {
"@wixc3/resolve-directory-context": "^4.0.0",
"colorette": "^2.0.20",
"commander": "^13.0.0",
"p-queue": "^8.0.1",
"promise-assist": "^2.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "20",
"@types/semver": "^7.5.8",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"prettier": "^3.4.2",
"type-fest": "^4.32.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"files": [
"bin",
"dist",
"!dist/test",
"src",
"!*/tsconfig.{json,tsbuildinfo}"
],
"engines": {
"node": ">=18"
},
"keywords": [
"publish",
"packages",
"workspace",
"npm",
"yarn",
"ci",
"automation",
"upgrade"
],
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wixplosives/pleb.git"
}
}