mirror of
https://github.com/tlsnotary/tlsn-extension.git
synced 2026-01-09 15:18:09 -05:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@tlsn/common",
|
|
"version": "1.0.0",
|
|
"description": "Shared utilities for TLSN packages",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:typescript",
|
|
"lint:eslint": "eslint . --ext .ts",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:typescript": "tsc --noEmit",
|
|
"lint:fix": "eslint . --ext .ts --fix && prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-prettier": "^9.1.2",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
},
|
|
"dependencies": {
|
|
"happy-dom": "20.0.11",
|
|
"vite": "7.3.0",
|
|
"webpack-dev-server": "5.2.2"
|
|
}
|
|
}
|