-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "@falcondev-oss/form",
"type": "module",
"version": "0.22.6",
"private": true,
"description": "Type-safe, framework agnostic form state library based on @vue/reactivity.",
"license": "Apache-2.0",
"repository": "github:falcondev-oss/form",
"bugs": {
"url": "https://github.com/falcondev-oss/form/issues"
},
"keywords": [
"form",
"frontend",
"state-management",
"reactivity",
"typescript"
],
"engines": {
"node": "24",
"pnpm": "10"
},
"scripts": {
"test": "pnpm -r --color run test",
"build": "pnpm -r --color run build",
"type-check": "tsc --build",
"lint": "eslint --cache . && prettier --check --cache .",
"lint:ci": "eslint --cache --cache-strategy content . && prettier --check --cache --cache-strategy content .",
"lint:fix": "eslint --fix --cache . && prettier --write --cache ."
},
"devDependencies": {
"@falcondev-oss/configs": "^5.0.2",
"eslint": "^9.39.4",
"prettier": "^3.8.2",
"tsdown": "^0.21.8",
"typescript": "^5.9.3"
},
"changelogithub": {
"extends": "gh:falcondev-it/configs/changelogithub"
}
}