-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1009 Bytes
/
package.json
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
{
"name": "tracked-instance",
"version": "1.0.23",
"description": "Build large forms and track all changes",
"type": "module",
"scripts": {
"build": "tsc && esbuild ./src/index.ts --bundle --external:vue --outfile=./dist/index.mjs --format=esm",
"test-ui": "vitest --ui",
"test": "vitest run"
},
"main": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@vitest/ui": "^3.0.5",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"vue": "^3.5.13"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudnik275/tracked-instance"
},
"author": "Dmytro Rudnyk",
"license": "MIT",
"keywords": [
"vue",
"vue 3",
"vue3",
"vue next",
"tracked form",
"track",
"collection",
"useTrackedInstance",
"useCollection"
]
}