-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 KB
/
package.json
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": "@hawk.so/javascript",
"type": "commonjs",
"version": "3.2.0",
"description": "JavaScript errors tracking for Hawk.so",
"files": [
"dist"
],
"main": "./dist/hawk.umd.js",
"module": "./dist/hawk.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/hawk.mjs",
"require": "./dist/hawk.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"stats": "size-limit > stats.txt",
"lint": "eslint -c ./.eslintrc.js src/ --ext .ts,.js --fix",
"lint-test": "eslint -c ./.eslintrc.js src/ --ext .ts,.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codex-team/hawk.javascript.git"
},
"author": {
"name": "CodeX",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codex-team/hawk.javascript/issues"
},
"homepage": "https://github.com/codex-team/hawk.javascript#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.6",
"eslint": "^7.24.0",
"eslint-config-codex": "^1.6.1",
"rollup-plugin-license": "^3.5.3",
"size-limit": "^11.1.6",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vue": "^2"
},
"dependencies": {
"@hawk.so/types": "^0.1.20",
"error-stack-parser": "^2.1.4",
"vite-plugin-dts": "^4.2.4"
}
}