-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.34 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
{
"name": "data-grid-component",
"version": "3.1.1",
"description": "Standalone data grid web component",
"type": "module",
"main": "data-grid",
"types": "./dist/types/data-grid.d.ts",
"packageManager": "bun@1.4.0",
"customElements": "custom-elements.json",
"exports": {
".": {
"types": "./dist/types/data-grid.d.ts",
"import": "./data-grid.js"
},
"./data-source": {
"types": "./dist/types/data-source.d.ts",
"import": "./src/data-source.js"
},
"./plugin": {
"types": "./dist/types/core/base-plugin.d.ts",
"import": "./src/core/base-plugin.js"
},
"./styles": "./dist/data-grid.css",
"./styles.min": "./dist/data-grid.min.css",
"./themes/bootstrap": "./themes/bootstrap.css",
"./locales/*": "./locales/*.js"
},
"files": [
"data-grid.js",
"src",
"dist",
"themes",
"locales",
"docs",
"custom-elements.json"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/lekoala/data-grid",
"scripts": {
"dev": "bun run build && bun demo/server.js",
"build": "bun scripts/build.js",
"test": "bun test --path-ignore-patterns 'test/browser/**'",
"test:browser": "bun test test/browser",
"test:browser:wsl": "wsl -e bash scripts/test-browser-wsl.sh",
"check": "biome check .",
"format": "biome format --write .",
"check:baseline": "bun scripts/check-baseline.js",
"check:locales": "bun scripts/check-locales.js",
"size": "bun scripts/css-size.js",
"check:drift": "bun scripts/check-drift.js",
"typecheck": "tsc -p jsconfig.json",
"types": "tsc -p tsconfig.types.json",
"check:types": "tsc -p test/types/tsconfig.json",
"manifest": "bun scripts/custom-elements.js",
"check:package": "bun scripts/check-package.js",
"ci": "bun run check && bun run check:baseline && bun run typecheck && bun run test && bun run check:locales && bun run types && bun run check:types && bun run manifest && bun run build && bun run check:drift"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lekoala/data-grid.git"
},
"keywords": [
"web-component",
"data",
"grid",
"es6"
],
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@happy-dom/global-registrator": "^20.11.2",
"typescript": "^7.0.2"
},
"author": "LeKoala",
"license": "MIT"
}