-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 KB
/
package.json
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
{
"name": "@tanstack/svelte-table",
"version": "9.0.0-alpha.10",
"description": "Headless UI for building powerful tables & datagrids for Svelte.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/table.git",
"directory": "packages/svelte-table"
},
"homepage": "https://tanstack.com/table",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"svelte",
"table",
"svelte-table",
"datagrid"
],
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf ./build && rimraf ./dist",
"test:eslint": "eslint ./src",
"test:types": "svelte-check --tsconfig ./tsconfig.json",
"test:build": "publint --strict",
"build": "svelte-package --input ./src --output ./dist"
},
"dependencies": {
"@tanstack/table-core": "workspace:*"
},
"devDependencies": {
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"eslint-plugin-svelte": "^2.46.1",
"svelte": "^5.19.3",
"svelte-check": "^4.1.4"
},
"peerDependencies": {
"svelte": "^5.0.0"
}
}