-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.89 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.89 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "celeris-web-monorepo",
"type": "module",
"version": "0.0.3",
"private": true,
"packageManager": "pnpm@10.10.0",
"author": "Kirk Lin (https://github.com/kirklin)",
"license": "MIT",
"homepage": "https://github.com/kirklin/celeris-web",
"keywords": [
"Celeris Web",
"celeris-web",
"celeris",
"front-end development",
"Vue 3",
"Vite",
"TypeScript",
"monorepo",
"OpenAI",
"natural language processing",
"streamlined development",
"lightning-fast",
"components",
"APIs",
"Vue Router",
"loading feedback",
"state management",
"Chinese font",
"i18n",
"Netlify"
],
"main": "src/main.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"bootstrap": "pnpm install",
"dev": "run-p dev:admin dev:mock",
"dev:admin": "pnpm --filter @celeris/admin dev",
"dev:mock": "pnpm --filter @celeris/admin-api dev",
"build": "pnpm --filter @celeris/admin build",
"generate-tree": "pnpm --filter scripts generate-tree",
"clean": "pnpm exec rimraf node_modules **/*/node_modules **/**/*/node_modules **/*/dist **/**/*/dist",
"clear": "pnpm exec rimraf 'packages/*/{lib,node_modules}' && rimraf node_modules",
"preview": "run-p preview:admin dev:mock dev:ai-services-openai",
"preview:admin": "pnpm --filter @celeris/admin preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm -r run test",
"test:coverage": "pnpm -r run test:coverage",
"reinstall": "npm run clean && pnpm exec rimraf pnpm-lock.yaml && npm run bootstrap",
"cs": "changeset",
"cs:version": "changeset version",
"cs:tag": "changeset tag",
"up": "taze major -r -w -I",
"release": "bumpp -r && pnpm -r publish --access public",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@celeris/tsconfig": "workspace:*",
"@changesets/cli": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@kirklin/eslint-config": "catalog:",
"@types/fs-extra": "catalog:",
"@types/node": "catalog:",
"@types/nprogress": "catalog:",
"@unocss/eslint-plugin": "catalog:",
"@vitest/coverage-v8": "catalog:",
"bumpp": "catalog:",
"cross-env": "catalog:",
"directory-tree": "catalog:",
"dotenv": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"eslint-plugin-vuejs-accessibility": "catalog:",
"esno": "catalog:",
"fs-extra": "catalog:",
"husky": "catalog:",
"jsdom": "catalog:",
"lint-staged": "catalog:",
"npm-run-all": "catalog:",
"rimraf": "catalog:",
"scripts": "workspace:*",
"taze": "catalog:",
"treeify": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"lint-staged": {
"**/*": "eslint --fix"
}
}