-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
{
"name": "@hawk.so/sveltekit",
"version": "1.0.0",
"description": "SvelteKit integration for Hawk Error Tracker",
"main": "./dist/hawk-sveltekit.umd.js",
"module": "./dist/hawk-sveltekit.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"source": "./src/index.ts",
"import": "./dist/hawk-sveltekit.mjs",
"require": "./dist/hawk-sveltekit.umd.js"
}
},
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codex-team/hawk.javascript.git",
"directory": "packages/sveltekit"
},
"author": {
"name": "CodeX",
"email": "team@codex.so"
},
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/codex-team/hawk.javascript/issues"
},
"homepage": "https://github.com/codex-team/hawk.javascript#readme",
"dependencies": {
"@hawk.so/javascript": "workspace:^"
},
"devDependencies": {
"vite": "^7.3.1",
"vite-plugin-dts": "^4.2.4"
}
}