-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@aurodesignsystem/auro-cli",
"version": "0.0.0",
"description": "A cli tool to support the Auro Design System",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-cli"
},
"scripts": {
"lint": "biome check --fix --no-errors-on-unmatched",
"prepare": "husky",
"test": "echo \"Notice: no tests available\" && exit 0",
"dev": "tsc && npm run copy-files && npm run bundle -- --watch --dev",
"build": "tsc && npm run copy-files && npm run bundle",
"build:dev": "tsc && npm run copy-files && npm run bundle -- --dev",
"copy-files": "copyfiles -f -u 1 \"src/migrations/**/*.{yml,sh}\" dist/ && tsc-alias",
"bundle": "node esbuild.config.js",
"auro-internal": "node ./dist/auro-cli.js"
},
"license": "Apache-2.0",
"type": "module",
"bin": {
"auro": "dist/auro-cli.js",
"auro-cli": "dist/auro-cli.js"
},
"exports": {
".": "./dist/auro-cli.js"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE",
"NOTICE"
],
"imports": {
"#configs/*": "./src/configs/*",
"#commands/*": "./src/commands/*",
"#scripts/*": "./src/scripts/*",
"#utils/*": "./src/utils/*"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18"
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
],
"dependencies": {
"@actions/github": "^9.1.1",
"@aurodesignsystem/auro-library": "^5.5.4",
"@babel/preset-env": "^7.28.3",
"@custom-elements-manifest/analyzer": "^0.11.0",
"@npmcli/package-json": "^7.0.1",
"@octokit/rest": "^22.0.0",
"@open-wc/dev-server-hmr": "^0.2.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.4",
"@wc-toolkit/cem-sorter": "^1.0.1",
"@wc-toolkit/cem-utilities": "^1.5.4",
"@wc-toolkit/jsx-types": "^1.4.3",
"@web/dev-server": "^0.4.6",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.20.2",
"azure-devops-node-api": "^15.1.1",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"figlet": "^1.9.3",
"glob": "^11.0.3",
"gradient-string": "^3.0.0",
"inquirer": "^12.9.6",
"markdown-table": "^3.0.4",
"ora": "^8.2.0",
"rollup-plugin-scss-lit": "^2.1.0",
"simple-git": "^3.28.0",
"table": "^6.9.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@aurodesignsystem/auro-config": "^1.3.1",
"@types/node": "^22.15.3",
"copyfiles": "^2.4.1",
"custom-elements-manifest": "^2.1.0",
"esbuild": "^0.25.10",
"husky": "^9.1.7",
"open": "^10.2.0",
"plop": "^4.0.3",
"tsc-alias": "^1.8.16"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}