-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "tornado",
"description": "🌪 Tornado is a tool that makes building web apps faster!",
"author": "Bruce Song <recall4056@gmail.com> (https://github.com/recallwei/)",
"repository": "github:recallwei/tornado",
"scripts": {
"dev": "pnpm -r --parallel --filter=\"./packages/*\" run dev",
"build": "pnpm -r --filter=\"./packages/*\" run build",
"release:generate": "pnpm changeset",
"release:version": "pnpm changeset version",
"release:publish": "pnpm changeset publish",
"create-tornado": "node packages/create-tornado/bin",
"tornado-x": "node packages/tornado-x/bin",
"docs:dev": "pnpm --filter=docs dev",
"docs:build": "pnpm --filter=docs build",
"docs:preview": "pnpm --filter=docs preview",
"cspell:check": "cspell \"**\"",
"eslint:check": "eslint \"**/*.{ts,tsx,js,tsx,vue}\" --color",
"eslint:fix": "pnpm eslint:check --fix",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"cz": "git-cz",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
},
"dependencies": {
"vue": "^3.3.13"
},
"devDependencies": {
"@brucesong/eslint-config-ts": "^1.0.17",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"commitizen": "^4.3.0",
"cspell": "^8.2.3",
"cz-git": "^1.8.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"tornado-x": "workspace:^",
"unbuild": "^2.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"private": true,
"license": "MIT"
}