-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.5 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.5 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
{
"name": "@unraid/shared-callbacks",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/unraid/shared-callbacks"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm build:types && pnpm build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "tsup",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "pnpm clean",
"test": "vitest --config vitest.config.ts",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.1",
"@vitest/coverage-v8": "^4.0.0",
"@vue/test-utils": "^2.4.6",
"rimraf": "^6.0.0",
"tsup": "^8.5.0",
"typescript": "^5.3.3",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"vue-demi"
]
}
}