-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.64 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
{
"//": [
"================================================================================",
"# To work within the development environment, run the following tasks",
" 1. $ npm run dev",
" 2. Go to http://localhost:8000",
"================================================================================"
],
"name": "@aurodesignsystem/auro-hyperlink",
"version": "0.0.0",
"description": "auro-hyperlink HTML custom element",
"repository": {
"type": "git",
"url": "https://github.com/AlaskaAirlines/auro-hyperlink"
},
"type": "module",
"main": "dist/registered.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"lit": "^3.3.2"
},
"devDependencies": {
"@alaskaairux/icons": "^5.23.0",
"@aurodesignsystem/auro-button": "^12.3.2",
"@aurodesignsystem/auro-cli": "^3.6.0",
"@aurodesignsystem/auro-config": "^1.3.1",
"@aurodesignsystem/auro-icon": "^9.2.0",
"@aurodesignsystem/auro-library": "^5.12.3",
"@aurodesignsystem/design-tokens": "^8.18.0",
"@aurodesignsystem/webcorestylesheets": "^10.1.4",
"husky": "^9.1.7"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 iOS major versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari major versions"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"alaska airlines",
"auro",
"design system",
"web components"
],
"scripts": {
"build": "auro build",
"build:version": "node ./scripts/version.mjs",
"dev": "auro dev -w -s",
"dev:open": "auro dev -w -s --open",
"lint": "biome check --no-errors-on-unmatched && stylelint \"./src/**/*.scss\"",
"lint:fix": "biome check --fix --no-errors-on-unmatched && stylelint \"./src/**/*.scss\" --fix",
"test": "auro test",
"test:watch": "auro test --watch",
"test:coverage": "auro test --coverage-report --open",
"prepare": "husky"
},
"exports": {
"./package.json": "./package.json",
"./custom-elements.json": "./custom-elements.json",
"./readme.md": "./README.md",
".": {
"module": "./dist/registered.js",
"types": "./dist/index.d.ts",
"default": "./dist/registered.js"
},
"./demo/*.md": "./demo/*.md",
"./demo/*.js": "./demo/*.min.js",
"./class": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"custom-elements.json",
"dist/**/*",
"demo/**/*",
"CHANGELOG.md",
"README.md",
"LICENSE",
"NOTICE"
],
"customElements": "custom-elements.json"
}