-
-
Notifications
You must be signed in to change notification settings - Fork 624
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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": "1.28.3",
"description": "Powerful, type-safe forms for Angular.",
"author": "tannerlinsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+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": "premove ./dist ./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 && premove ./dist/package.json"
},
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/fesm2022/tanstack-angular-form.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/fesm2022/tanstack-angular-form.mjs"
},
"./package.json": {
"default": "./package.json"
}
},
"sideEffects": false,
"files": [
"dist",
"src"
],
"dependencies": {
"@tanstack/angular-store": "^0.9.1",
"@tanstack/form-core": "workspace:*",
"tslib": "^2.8.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.21.1",
"@analogjs/vitest-angular": "^1.21.1",
"@angular/common": "^20.3.1",
"@angular/compiler": "^20.3.1",
"@angular/compiler-cli": "^20.3.1",
"@angular/core": "^20.3.1",
"@angular/platform-browser": "^20.3.1",
"@angular/platform-browser-dynamic": "^20.3.1",
"@testing-library/angular": "^17.4.0",
"ng-packagr": "^20.3.0",
"typescript": "5.8.2",
"vite-tsconfig-paths": "^5.1.4",
"zone.js": "0.15.1"
},
"peerDependencies": {
"@angular/core": ">=19.0.0"
}
}