forked from changesets/changesets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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": "@remix-run/changesets-repository",
"version": "1.0.0",
"private": true,
"description": "A tool to help manage the versioning and changelogs for open source packages",
"scripts": {
"test": "jest",
"build": "preconstruct build",
"watch": "preconstruct watch",
"postinstall": "preconstruct dev && manypkg check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "yarn eslint . --ext .ts,.tsx,.js",
"lint:prettier": "prettier --list-different \"**/*.{js,ts,tsx,md}\"",
"types:check": "tsc",
"prettier": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"changeset": "packages/cli/bin.js",
"check-all": "yarn test && yarn lint && yarn types:check",
"version-packages": "changeset version && yarn prettier",
"release": "yarn build && changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/changesets/changesets.git"
},
"workspaces": [
"packages/*",
"internal/*"
],
"author": "Changesets Contributors",
"contributors": [
"Ben Conolly",
"Mitchell Hamilton",
"Mateusz Burzyński <mateuszburzynski@gmail.com> (https://github.com/Andarist)"
],
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.1",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^1.1.26",
"@types/fs-extra": "^5.1.0",
"@types/jest": "28.x",
"@types/jest-in-case": "^1.0.6",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.136",
"@types/meow": "^5.0.0",
"@types/prettier": "^2.7.0",
"@types/semver": "^6.0.0",
"@typescript-eslint/eslint-plugin": "5",
"@typescript-eslint/parser": "5",
"codecov": "^3.6.5",
"eslint": "^8.28.0",
"eslint-config-chance": "^2.0.2",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jest-dom": "^4.0.3",
"jest": "28.x",
"jest-junit": "^15.0.0",
"jest-watch-typeahead": "^2.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"preconstruct": {
"packages": [
"packages/*",
"internal/*"
]
},
"prettier": {}
}