forked from kitajs/kitajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "@kitajs/monorepo",
"version": "1.0.0",
"private": true,
"homepage": "https://kita.js.org",
"bugs": {
"url": "https://github.com/kitajs/kitajs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitajs/kitajs.git"
},
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r --aggregate-output build",
"change": "changeset",
"ci:publish": "pnpm publish -r --access public && changeset tag",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"format": "prettier --write .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"test": "pnpm -r --no-bail --aggregate-output --parallel test",
"watch": "pnpm -r --parallel --no-bail build --watch"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "^1.0.12",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@kitajs/ts-plugin": "workspace:^",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.8.1",
"pnpm": ">=8.8.0"
}
}