mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
46 lines
1015 B
JSON
46 lines
1015 B
JSON
{
|
|
"name": "@hctv/sdk",
|
|
"version": "0.1.0",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"example": "sh -c 'bun run examples/${0}.ts'"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE",
|
|
"package.json"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": "https://github.com/SrIzan10/ts-lib-boilerplate.git",
|
|
"author": "Izan Gil <npm@srizan.dev>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.1.0",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
"@typescript-eslint/parser": "^8.50.1",
|
|
"eslint": "^9.39.2",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|