-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.99 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
{
"name": "@spear-ai/citizen",
"version": "1.0.0",
"description": "Spear AI Code Citizen",
"author": {
"name": "Spear AI",
"email": "[email protected]",
"url": "https://spear.ai"
},
"type": "module",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.3",
"@commitlint/cli": "19.3.0",
"@commitlint/types": "19.0.3",
"@spear-ai/eslint-config": "*",
"@spear-ai/npm-package-json-lint-config": "*",
"commitlint": "19.3.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"npm-package-json-lint": "7.1.0",
"prettier": "3.2.5",
"turbo": "1.13.3",
"typescript": "5.4.5"
},
"license": "MIT",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/spear-ai/citizen.git"
},
"scripts": {
"version": "changeset version && yarn workspaces foreach -A run sync-version",
"build": "yarn dlx turbo build",
"commitlint:check": "commitlint --last",
"eslint:check": "eslint --max-warnings 0 .",
"eslint:fix": "yarn eslint:check --fix",
"github-actions:push": "act push -s GH_PAT=$GH_PAT -s GITHUB_TOKEN=$GH_PAT -s NPM_TOKEN=$NPM_TOKEN",
"github-actions:push:release-tag": "act push -e .github/test-events/push-release-tag.json -s GH_PAT=$GH_PAT -s GITHUB_TOKEN=$GH_PAT",
"npmpkgjsonlint:check": "npmPkgJsonLint .",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"publish-packages": "yarn run publish-packages:npm && yarn run publish-packages:github && yarn run publish-packages:custom && yarn changeset tag",
"publish-packages:custom": "yarn workspaces foreach -A run publish-package",
"publish-packages:github": "npm_config_registry=https://npm.pkg.github.com changeset publish --no-git-tag",
"publish-packages:npm": "changeset publish --no-git-tag",
"typescript:check": "tsc --noEmit",
"update": "yarn upgrade-interactive"
},
"workspaces": [
"packages/*"
]
}