-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.82 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.82 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@digdir/designsystemet-web",
"type": "module",
"version": "1.13.3",
"description": "Javascript for Designsystemet",
"author": "Designsystemet team",
"repository": {
"type": "git",
"url": "git+https://github.com/digdir/designsystemet.git"
},
"homepage": "https://github.com/digdir/designsystemet/tree/main/packages/web",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./custom-elements.json": "./dist/custom-elements.json",
"./vscode.html-custom-data.json": "./dist/vscode.html-custom-data.json",
"./ds-breadcrumbs": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/breadcrumbs/breadcrumbs.js",
"require": "./dist/cjs/breadcrumbs/breadcrumbs.cjs"
},
"./clickdelegatefor": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/clickdelegatefor/clickdelegatefor.js",
"require": "./dist/cjs/clickdelegatefor/clickdelegatefor.cjs"
},
"./dialog": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/dialog/dialog.js",
"require": "./dist/cjs/dialog/dialog.cjs"
},
"./ds-error-summary": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/error-summary/error-summary.js",
"require": "./dist/cjs/error-summary/error-summary.cjs"
},
"./ds-field": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/field/field.js",
"require": "./dist/cjs/field/field.cjs"
},
"./fieldset": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/fieldset/fieldset.js",
"require": "./dist/cjs/fieldset/fieldset.cjs"
},
"./ds-pagination": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/pagination/pagination.js",
"require": "./dist/cjs/pagination/pagination.cjs"
},
"./popover": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/popover/popover.js",
"require": "./dist/cjs/popover/popover.cjs"
},
"./readonly": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/readonly/readonly.js",
"require": "./dist/cjs/readonly/readonly.cjs"
},
"./ds-suggestion": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/suggestion/suggestion.js",
"require": "./dist/cjs/suggestion/suggestion.cjs"
},
"./ds-tabs": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/tabs/tabs.js",
"require": "./dist/cjs/tabs/tabs.cjs"
},
"./toggle-group": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/toggle-group/toggle-group.js",
"require": "./dist/cjs/toggle-group/toggle-group.cjs"
},
"./tooltip": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/tooltip/tooltip.js",
"require": "./dist/cjs/tooltip/tooltip.cjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"start": "vite --config=./vite.config.ts --port=5174",
"build": "rimraf dist && tsdown && rolldown -c && cem analyze",
"test": "vitest --config=vitest.config.ts"
},
"customElements": "dist/custom-elements.json",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@u-elements/u-combobox": "^2.0.3",
"@u-elements/u-datalist": "^2.0.1",
"@u-elements/u-details": "^1.0.0",
"@u-elements/u-tabs": "^1.0.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.11.0",
"@testing-library/dom": "10.4.1",
"@vitest/browser-playwright": "4.1.5",
"custom-element-vs-code-integration": "1.5.0",
"invokers-polyfill": "1.0.3",
"rimraf": "6.1.3",
"rolldown": "1.0.0-rc.13",
"tsdown": "0.21.9",
"vite": "7.3.2",
"vitest": "4.1.5"
}
}