@sken-ds/primitives 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sken-ds/primitives",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"registry": "https://registry.npmjs.org",
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"description": "Framework-independent Web Components implementation of the Sken component layer (Lit 3).",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"sideEffects": [
|
|
11
|
+
"**/*.ts",
|
|
12
|
+
"**/*.css"
|
|
13
|
+
],
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./ix-bridge.css": "./dist/ix-bridge.css",
|
|
22
|
+
"./sken-button": {
|
|
23
|
+
"types": "./dist/sken-button.d.ts",
|
|
24
|
+
"import": "./dist/sken-button.js"
|
|
25
|
+
},
|
|
26
|
+
"./sken-checkbox": {
|
|
27
|
+
"types": "./dist/sken-checkbox.d.ts",
|
|
28
|
+
"import": "./dist/sken-checkbox.js"
|
|
29
|
+
},
|
|
30
|
+
"./sken-input": {
|
|
31
|
+
"types": "./dist/sken-input.d.ts",
|
|
32
|
+
"import": "./dist/sken-input.js"
|
|
33
|
+
},
|
|
34
|
+
"./sken-number-input": {
|
|
35
|
+
"types": "./dist/sken-number-input.d.ts",
|
|
36
|
+
"import": "./dist/sken-number-input.js"
|
|
37
|
+
},
|
|
38
|
+
"./sken-textarea": {
|
|
39
|
+
"types": "./dist/sken-textarea.d.ts",
|
|
40
|
+
"import": "./dist/sken-textarea.js"
|
|
41
|
+
},
|
|
42
|
+
"./sken-switch": {
|
|
43
|
+
"types": "./dist/sken-switch.d.ts",
|
|
44
|
+
"import": "./dist/sken-switch.js"
|
|
45
|
+
},
|
|
46
|
+
"./sken-combobox": {
|
|
47
|
+
"types": "./dist/sken-combobox.d.ts",
|
|
48
|
+
"import": "./dist/sken-combobox.js"
|
|
49
|
+
},
|
|
50
|
+
"./sken-combobox-item": {
|
|
51
|
+
"types": "./dist/sken-combobox-item.d.ts",
|
|
52
|
+
"import": "./dist/sken-combobox-item.js"
|
|
53
|
+
},
|
|
54
|
+
"./sken-filter-chip": {
|
|
55
|
+
"types": "./dist/sken-filter-chip.d.ts",
|
|
56
|
+
"import": "./dist/sken-filter-chip.js"
|
|
57
|
+
},
|
|
58
|
+
"./sken-combobox-group": {
|
|
59
|
+
"types": "./dist/sken-combobox-group.d.ts",
|
|
60
|
+
"import": "./dist/sken-combobox-group.js"
|
|
61
|
+
},
|
|
62
|
+
"./sken-date-picker": {
|
|
63
|
+
"types": "./dist/sken-date-picker.d.ts",
|
|
64
|
+
"import": "./dist/sken-date-picker.js"
|
|
65
|
+
},
|
|
66
|
+
"./sken-datatable": {
|
|
67
|
+
"types": "./dist/sken-datatable.d.ts",
|
|
68
|
+
"import": "./dist/sken-datatable.js"
|
|
69
|
+
},
|
|
70
|
+
"./sken-dialog": {
|
|
71
|
+
"types": "./dist/sken-dialog.d.ts",
|
|
72
|
+
"import": "./dist/sken-dialog.js"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"files": [
|
|
76
|
+
"dist",
|
|
77
|
+
"README.md"
|
|
78
|
+
],
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@lit/context": "^1.1.6",
|
|
81
|
+
"@siemens/ix": "^5.1.1",
|
|
82
|
+
"@siemens/ix-icons": "^3.4.0",
|
|
83
|
+
"@tanstack/lit-table": "^9.0.0",
|
|
84
|
+
"@tanstack/match-sorter-utils": "^9.0.0",
|
|
85
|
+
"@tanstack/table-core": "^9.0.0",
|
|
86
|
+
"lit": "^3.3.3",
|
|
87
|
+
"@sken-ds/contracts": "0.3.0"
|
|
88
|
+
},
|
|
89
|
+
"devDependencies": {
|
|
90
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
91
|
+
"happy-dom": "^20.11.1",
|
|
92
|
+
"typescript": "^6.0.3",
|
|
93
|
+
"vite": "^8.2.0",
|
|
94
|
+
"vitest": "^4.1.10"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"build": "vite build && node scripts/copy-css-assets.mjs",
|
|
98
|
+
"dev": "vite build --watch",
|
|
99
|
+
"typecheck": "tsc --noEmit",
|
|
100
|
+
"lint": "echo 'lint placeholder'",
|
|
101
|
+
"test": "vitest run",
|
|
102
|
+
"clean": "rm -rf dist .turbo *.tsbuildinfo"
|
|
103
|
+
}
|
|
104
|
+
}
|