-
-
Notifications
You must be signed in to change notification settings - Fork 631
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.93 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.93 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
{
"name": "@tanstack/angular-form",
"version": "0.26.3",
"description": "Powerful, type-safe forms for Angular.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/form.git",
"directory": "packages/angular-form"
},
"homepage": "https://tanstack.com/form",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts54": "tsc",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./dist/package.json"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/fesm2022/tanstack-angular-form.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"esm2022": "./dist/esm2022/tanstack-angular-form.mjs",
"esm": "./dist/esm2022/tanstack-angular-form.mjs",
"default": "./dist/fesm2022/tanstack-angular-form.mjs"
},
"./package.json": {
"default": "./package.json"
}
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/angular-store": "^0.5.4",
"@tanstack/form-core": "workspace:*",
"tslib": "^2.6.3"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.6.1",
"@angular/common": "^17.3.11",
"@angular/compiler": "^17.3.11",
"@angular/compiler-cli": "^17.3.11",
"@angular/core": "^17.3.11",
"@angular/platform-browser": "^17.3.11",
"@angular/platform-browser-dynamic": "^17.3.11",
"@testing-library/angular": "^17.0.0",
"ng-packagr": "^17.3.0",
"typescript": "5.4.2",
"zone.js": "^0.14.7"
},
"peerDependencies": {
"@angular/core": ">=17.3.0"
}
}