-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.37 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.37 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
{
"name": "@svar-ui/lib-data-provider",
"productTag": "data-provider",
"version": "1.7.2",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"lint": "eslint ./src/ ./test/ && tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:run": "vitest --run",
"test:coverage": "vitest --run --coverage",
"prepare": "husky"
},
"files": [
"dist",
"readme.md",
"whatsnew.md"
],
"repository": {
"type": "git",
"url": "https://github.com/svar-widgets/lib-data-provider"
},
"bugs": {
"url": "https://forum.svar.dev"
},
"homepage": "https://svar.dev/svelte/core/",
"devDependencies": {
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.35.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.10.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"tsup": "8.5.0",
"typescript": "5.9.2",
"typescript-eslint": "8.43.0",
"vitest": "3.2.4"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@svar-ui/lib-state": "1.9.6"
}
}