-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
68 lines (68 loc) · 2.23 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
{
"name": "vue-js-cron",
"repository": "https://github.com/abichinger/vue-js-cron",
"author": "Andreas Bichinger",
"license": "MIT",
"workspaces": [
"core",
"light",
"vuetify",
"element-plus",
"ant",
"quasar",
"naive-ui"
],
"private": true,
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"build-demo": "cd demo && npm run build",
"build-docs": "cd docs && npm run build",
"test": "npm run test --workspaces --if-present",
"dry-run": "multi-semantic-release --dry-run --ignore-private-packages",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"lint-fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typedoc": "typedoc --options typedoc.json",
"gen-readme": "npx cron-cli readme .",
"generate": "npm run gen-readme && npm run generate --prefix demo && npm run generate --prefix docs"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rushstack/eslint-patch": "^1.5.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vue-js-cron/generated": "file:./generated",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^25.0.1",
"multi-semantic-release": "^3.0.2",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"rollup": "^4.3.0",
"rollup-plugin-css-only": "^4.5.0",
"rollup-plugin-vue": "^6.0.0",
"typedoc": "^0.25.3",
"typedoc-plugin-vue": "^1.1.0",
"typescript": "~5.2.0",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.3",
"vitest": "^2.1.4",
"vue": "^3.3.4",
"vue-tsc": "^1.8.19"
}
}