-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vittra",
"version": "0.2.4",
"description": "Simple browser log-tracing library",
"type": "module",
"main": "dist/vittra.js",
"module": "dist/vittra.js",
"types": "dist/vittra.d.ts",
"exports": {
".": {
"import": "./dist/vittra.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "husky",
"dev": "vite demo",
"clean": "rm -rf dist",
"build:js": "vite build",
"build:types": "tsc -p tsconfig.build.json",
"build": "pnpm run clean && pnpm run build:js && pnpm run build:types",
"type-check": "tsc --noEmit",
"verify-package": "publint",
"verify": "run-s type-check lint:fix test build verify-package",
"prepublishOnly": "pnpm run verify",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"publint": "^0.3.2",
"typescript": "^5.6.3",
"vite": "^6.0.5",
"vitest": "^3.0.1"
},
"keywords": [
"logging",
"browser",
"esm",
"typescript"
],
"author": "cascading-jox",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cascading-jox/vittra.git"
},
"bugs": {
"url": "https://github.com/cascading-jox/vittra/issues"
},
"homepage": "https://github.com/cascading-jox/vittra#readme"
}