-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
41 lines (41 loc) · 1.98 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.9.1",
"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 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",
"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",
"build:examples": "npm run build --workspace @oruga-ui/examples",
"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:examples": "npm run publish:examples --workspace @oruga-ui/examples",
"publish:examples:pre": "npm run publish:examples:pre --workspace @oruga-ui/examples",
"publish:lib": "npm run publish:lib --workspace @oruga-ui/oruga-next",
"publish:lib:pre": "npm run publish:lib:pre --workspace @oruga-ui/oruga-next",
"release": "npm run version && npm run changelog",
"version": "node .scripts/sync-version.js && git add .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "echo \"You can now publish your tag with 'git push --follow-tags'\""
},
"devDependencies": {
"concurrently": "^9.0.1",
"conventional-changelog": "^6.0.0",
"conventional-changelog-cli": "^5.0.0",
"replace-in-file": "^7.1.0"
}
}