-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.75 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
{
"name": "@tanstack/angular-table",
"version": "9.0.0-alpha.23",
"description": "Headless UI for building powerful tables & datagrids for Angular.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/table.git",
"directory": "packages/angular-table"
},
"homepage": "https://tanstack.com/table",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"angular",
"table",
"angular-table",
"datagrid"
],
"type": "module",
"module": "dist/fesm2022/tanstack-angular-table.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/fesm2022/tanstack-angular-table.js"
},
"./package.json": {
"default": "./package.json"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf ./build && rimraf ./dist",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest",
"test:benchmark": "vitest bench",
"test:lib:dev": "vitest --watch",
"test:types": "tsc && vitest --typecheck"
},
"dependencies": {
"@tanstack/angular-store": "^0.9.3",
"@tanstack/table-core": "workspace:*",
"tslib": "^2.8.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.4.0",
"@analogjs/vitest-angular": "^2.4.0",
"@angular/core": "^21.2.7",
"@angular/platform-browser": "^21.2.7",
"ng-packagr": "^21.2.2",
"typescript": "6.0.2"
},
"peerDependencies": {
"@angular/core": ">=19"
},
"sideEffects": false
}