-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.7 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
{
"name": "@iyulab/data-components",
"description": "iyulab data visualization components",
"version": "0.18.0",
"keywords": [
"iyulab",
"web-components",
"lit-element"
],
"license": "MIT",
"author": "iyulab",
"repository": {
"type": "git",
"url": "https://github.com/iyulab/node-data-components.git"
},
"files": [
"dist",
"skills",
"LICENSE",
"README.md",
"CHANGELOG.md",
"package.json"
],
"type": "module",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js"
},
"./dist/*": "./src/*",
"./init": "./src/init.js",
"./react": {
"types": "./src/react.d.ts",
"import": "./src/react.js"
},
"./simple-sheet": "./src/components/simple-sheet/USimpleSheet.js",
"./data-view": "./src/components/data-view/UDataView.js",
"./u-rich-table": "./src/components/u-rich-table/URichTable.js",
"./u-record-picker": "./src/components/u-record-picker/URecordPicker.js"
},
"sideEffects": [
"./dist/components/data-view/UDataView.js",
"./src/components/data-view/UDataView.ts",
"./dist/components/simple-sheet/USimpleSheet.js",
"./src/components/simple-sheet/USimpleSheet.ts",
"./dist/components/u-rich-table/URichTable.js",
"./src/components/u-rich-table/URichTable.ts",
"./dist/components/u-record-picker/URecordPicker.js",
"./src/components/u-record-picker/URecordPicker.ts",
"./dist/index.js",
"./src/index.ts",
"./dist/init.js",
"./src/init.ts",
"./dist/react.js",
"./src/react.ts",
"./dist/utilities/shadowDomProtection.js",
"./src/utilities/shadowDomProtection.ts"
],
"scripts": {
"start": "vite",
"build": "npm run typecheck && eslint && vite build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@iyulab/components": "^1.23.0",
"lit": "^3.3.3"
},
"peerDependencies": {
"@lit/react": "^1.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@lit/react": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@lit/react": "^1.0.8",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@vitest/browser-playwright": "^4.1.10",
"eslint": "^9.39.4",
"glob": "^13.0.6",
"globals": "^17.7.0",
"happy-dom": "^20.10.6",
"react": "^19.2.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.4",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10"
}
}