-
-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"name": "@tanstack/angular-devtools",
"version": "0.0.6",
"description": "TanStack Devtools is a set of tools for building advanced devtools for your Angular application.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/devtools.git",
"directory": "packages/angular-devtools"
},
"homepage": "https://tanstack.com/devtools",
"bugs": {
"url": "https://github.com/TanStack/devtools/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"angular",
"devtools"
],
"type": "module",
"module": "dist/fesm2022/tanstack-angular-devtools.mjs",
"types": "./dist/types/tanstack-angular-devtools.d.ts",
"exports": {
".": {
"types": "./dist/types/tanstack-angular-devtools.d.ts",
"default": "./dist/fesm2022/tanstack-angular-devtools.mjs"
},
"./provider": {
"types": "./dist/types/tanstack-angular-devtools-provider.d.ts",
"default": "./dist/fesm2022/tanstack-angular-devtools-provider.mjs"
},
"./package.json": {
"default": "./package.json"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"provider"
],
"scripts": {
"clean": "premove ./build ./dist",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rm -rf ./dist/package.json && rm -rf ./dist/provider/package.json"
},
"dependencies": {
"@tanstack/devtools": "workspace:*",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/core": "^21.2.0",
"ng-packagr": "^21.2.0",
"tslib": "^2.3.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@angular/core": ">=21.0.0"
}
}