-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 904 Bytes
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
{
"name": "@lamlib/data-sync",
"version": "1.3.3",
"description": "A library for sync data on client-side base on fetch API",
"main": "src/main.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node ./scripts/build.mjs",
"prepare": "husky",
"test": "vitest",
"test:browser": "vitest",
"commit": "cz",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@vitest/browser": "^3.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.25.4",
"husky": "^9.1.7",
"playwright": "^1.53.0",
"standard-version": "^9.5.0",
"vitest": "^3.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}