-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.74 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
67
68
69
70
71
72
{
"name": "@blokwise/utils",
"type": "module",
"version": "2.1.0",
"author": {
"name": "Julian Derungs",
"email": "julian.derungs@deepbase.ch",
"url": "https://github.com/aerophobic"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/blokwise/utils.git"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist/**/!(*.spec).*"
],
"engines": {
"node": ">=18.14.0"
},
"scripts": {
"prepack": "unbuild",
"lint": "eslint --ext .ts --ext .vue .",
"release": "yarn test && yarn prepack && changelogen --release --push && npm publish --access=public --scope=@blokwise --tag=latest --registry=https://registry.npmjs.com/",
"test": "yarn vitest run",
"coverage": "vitest run --coverage",
"test:types": "vue-tsc --noEmit && nuxi typecheck playground"
},
"dependencies": {
"@antfu/utils": "^0.7.7",
"consola": "^3.2.3",
"defu": "^6.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.1",
"@types/node": "20.10.6",
"@vitest/coverage-v8": "1.1.0",
"@vitest/ui": "1.1.0",
"changelogen": "0.5.5",
"eslint": "8.54.0",
"happy-dom": "^12.10.3",
"jiti": "1.21.0",
"playwright-core": "1.40.1",
"typescript": "5.3.3",
"unbuild": "^2.0.0",
"vite-tsconfig-paths": "4.2.2",
"vitest": "1.1.0",
"vue-tsc": "1.8.27"
}
}