-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@kogara/monorepo",
"version": "0.0.0",
"description": "Monorepo of kogara packages",
"homepage": "https://github.com/ragokan/kogara",
"author": "ragokan",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"example"
],
"scripts": {
"build": "turbo build",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean --parallel",
"docs:dev": "turbo run docs:dev --parallel",
"example:dev": "turbo run example:dev --parallel",
"nuxt:dev": "turbo run nuxt:dev --parallel",
"test": "vitest --config vitest.config.ts",
"test-watch": "vitest --config vitest.config.ts --watch",
"prepublish": "yarn build",
"publish": "lerna publish --force-publish --yes",
"deps-update-all": "ncu -u && turbo run deps-update-all --parallel",
"prettier:fix": "prettier --write .",
"eslint": "eslint . --cache -c .eslintrc.js --fix"
},
"devDependencies": {
"@babel/types": "^7.23.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.0",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"glob": "^10.3.10",
"lerna": "^7.4.2",
"npm-check-updates": "^16.14.6",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup": "^4.4.0",
"rollup-plugin-typescript2": "^0.36.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vue": "^3.3.8"
},
"overrides": {
"wide-align": "git://github.com/jimmywarting/wide-align.git#es6-style"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ragokan/kogara.git"
},
"dependencies": {
"tslib": "^2.6.2"
}
}