-
-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.4 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
{
"name": "root",
"version": "0.13.1",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"license": "MIT",
"author": "Walter Tommasi <tommsi20@gmail.com>",
"maintainers": [
"Marcel Moravek (https://github.com/mlmoravek)"
],
"workspaces": [
"packages/oruga",
"packages/examples",
"packages/docs"
],
"scripts": {
"dev": "run-p build:lib:watch build:docs:watch",
"build": "npm run build:lib && npm run build:examples && npm run build:docs",
"build:docs": "npm run docs:build --workspace @oruga-ui/docs-next",
"build:docs:watch": "npm run docs:dev --workspace @oruga-ui/docs-next",
"build:lib": "npm run build --workspace @oruga-ui/oruga-next",
"build:lib:watch": "npm run build:watch --workspace @oruga-ui/oruga-next",
"build:examples": "npm run build --workspace @oruga-ui/examples",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint . --fix",
"lint:prettier": "prettier --write .",
"test:lint": "run-s test:eslint test:prettier",
"test:eslint": "eslint .",
"test:prettier": "prettier --check .",
"test": "npm run test --workspace @oruga-ui/oruga-next",
"test:coverage": "npm run test:coverage --workspace @oruga-ui/oruga-next",
"test:ts": "npm run test:ts --workspace @oruga-ui/oruga-next",
"gen": "npm run gen:types && npm run gen:volar && npm run gen:docs",
"gen:volar": "tsx .scripts/gen-volar-dts.ts",
"gen:types": "tsx .scripts/gen-comp-types.ts",
"gen:docs": "npm run docs:gen --workspace @oruga-ui/docs-next",
"version": "tsx .scripts/sync-version.ts && npm i",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
"release": "npm run version && npm run changelog",
"postrelease": "echo \"You can now create a tag push it with 'git push --follow-tags'\"",
"update": "ncu -u --workspaces --root"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"conventional-changelog": "^7.2.0",
"conventional-changelog-conventionalcommits": "9.3.0",
"eslint": "^9.36.0",
"eslint-plugin-vue": "^10.5.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"npm-check-updates": "^19.6.5",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"replace-in-file": "^8.4.0",
"tsx": "^4.21.0"
}
}