forked from oruga-ui/oruga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 2.03 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
{
"name": "root",
"version": "0.8.12",
"homepage": "https://oruga-ui.com",
"description": "UI components for Vue.js and CSS framework agnostic",
"author": "Walter Tommasi <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/oruga",
"packages/examples",
"packages/docs"
],
"scripts": {
"dev": "concurrently \"npm run dev -w @oruga-ui/oruga-next\" \"npm run dev -w @oruga-ui/docs-next\"",
"dev:watch": "concurrently \"npm run build:lib:watch\" \"npm run build:docs:watch\"",
"test": "npm run test:coverage --workspace @oruga-ui/oruga-next",
"test:ts": "npm run test:ts --workspace @oruga-ui/oruga-next",
"test:watch": "npm run test:watch --workspace @oruga-ui/oruga-next",
"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:lib --workspace @oruga-ui/oruga-next",
"build:lib:watch": "npm run build:lib:watch --workspace @oruga-ui/oruga-next",
"gen": "npm run gen:types && npm run gen:volar && npm run gen:docs",
"gen:volar": "node .scripts/gen-volar-dts.mjs --bundle --platform=node",
"gen:types": "node .scripts/gen-comp-types.mjs --bundle --platform=node",
"gen:docs": "npm run docs:gen --workspace @oruga-ui/docs-next",
"publish": "concurrently \"npm run publish:lib\" \"npm run publish:examples\"",
"publish:lib": "npm run publish --workspace @oruga-ui/oruga-next",
"publish:examples": "npm run publish --workspace @oruga-ui/examples",
"release": "npm run version && npm run changelog",
"version": "node .scripts/sync-version.js && git add .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && node .scripts/wait-confirm && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your tag with 'git push --follow-tags'\""
},
"devDependencies": {
"concurrently": "^8.2.2",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"replace-in-file": "^7.2.0"
}
}