-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "@script-development/fs-loading",
"version": "0.1.0",
"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": "https://github.com/script-development/fs-packages.git",
"directory": "packages/loading"
},
"files": [
"dist"
],
"type": "module",
"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",
"typecheck": "tsc --noEmit",
"lint:pkg": "publint && attw --pack",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run"
},
"devDependencies": {
"@script-development/fs-http": "^0.1.0",
"@vue/test-utils": "^2.4.6",
"axios": "1.14.0",
"happy-dom": "^20.8.9",
"vue": "^3.5.32"
},
"peerDependencies": {
"@script-development/fs-http": "^0.1.0",
"vue": "^3.5.32"
}
}