-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "@script-development/fs-loading",
"version": "0.1.4",
"description": "Reactive loading state service with counter-based tracking and HTTP middleware for fs-http",
"homepage": "https://packages.script.nl/packages/loading",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/script-development/fs-packages.git",
"directory": "packages/loading"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsdown",
"lint:pkg": "publint && attw --pack",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@script-development/fs-http": "^0.1.0 || ^0.2.0 || ^0.3.0 || ^0.4.0",
"@vue/test-utils": "^2.4.11",
"axios": "^1.18.1",
"happy-dom": "^20.10.3",
"vue": "^3.5.39"
},
"peerDependencies": {
"@script-development/fs-http": "^0.1.0 || ^0.2.0 || ^0.3.0 || ^0.4.0",
"vue": "^3.5.39"
},
"engines": {
"node": ">=24.0.0"
}
}