-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.87 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
{
"name": "@thepower/PowerTools",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"watch": "turbo run watch --continue",
"test": "turbo run test",
"test:static": "yarn run typecheck; yarn run lint; yarn run prettier",
"coverage:merge": "node ./scripts/coverage-merge.js",
"coverage:summary": "node ./scripts/coverage-summary.js",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"prettier": "prettier --check .",
"prettier:format": "prettier --write .",
"clean": "rm -rf `find . -type d -name node_modules -o -name dist -o -name .next -o -name out`; rm yarn.lock",
"changeset:pre": "changeset pre enter",
"changeset:pre:exit": "changeset pre exit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "yarn publish:latest",
"publish:latest": "yarn install; yarn build; changeset publish",
"publish:alpha": "yarn install; yarn build; changeset publish --tag alpha",
"publish:beta": "yarn install; yarn build; changeset publish --tag beta",
"publish:canary": "yarn install; yarn build; changeset publish --tag canary",
"prepare": "husky",
"cm": "git add . && git commit"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@vitest/coverage-v8": "2.1.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-require-extensions": "0.1.3",
"husky": "9.0.11",
"prettier": "3.1.1",
"turbo": "^2.2.3",
"typescript": "^5.3.3",
"vite": "5.2.11",
"vite-plugin-node-polyfills": "0.22.0",
"vitest": "2.1.3"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}