-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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": "pls-changeset-me",
"version": "0.0.11",
"description": "A package which practically begs for you to generate a changeset if there are any changes",
"keywords": [
"pnpm",
"changeset",
"pre-commit"
],
"repository": {
"type": "git",
"url": "https://github.com/avatarneil/pls-changeset-me"
},
"license": "MIT",
"author": "Neil Goldader",
"main": "dist/index.js",
"bin": {
"pls-changeset-me": "./dist/index.js"
},
"files": [
"dist/",
"bin/"
],
"scripts": {
"build": "tsc --listEmittedFiles",
"clean": "pnpm clean:only && pnpm install",
"clean:only": "git clean -fdX",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm pnpm lint:eslint '**/*.ts' && pnpm lint:prettier '**/package.json'",
"lint:eslint": "eslint --ignore-path=.gitignore",
"lint:prettier": "prettier --check",
"prepare": "husky install",
"release": "pnpm build && pnpm changeset publish",
"test": "pnpm lint",
"version-packages": "pnpm changeset version"
},
"dependencies": {
"@changesets/git": "1.4.1",
"@changesets/parse": "0.3.14",
"@manypkg/get-packages": "1.1.3",
"fs-extra": "10.1.0",
"inquirer": "8.1.2",
"yargs": "17.5.1"
},
"devDependencies": {
"@changesets/cli": "2.24.2",
"@types/fs-extra": "9.0.13",
"@types/inquirer": "7.3.3",
"@types/node": "16.4.8",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-log": "1.2.7",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.2.18",
"ts-node": "10.9.1",
"typescript": "4.7.4"
}
}