This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.4 KB
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
{
"name": "@reconbot/typescript-library-template",
"version": "0.0.0-development",
"description": "Rollup your code and types for publishing",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index-esm.mjs"
},
"packageManager": "pnpm@8.14.0",
"engines": {
"node": ">=20"
},
"repository": "git@github.com:reconbot/typescript-library-template.git",
"homepage": "https://github.com/reconbot/typescript-library-template",
"scripts": {
"test": "node -r esbuild-register --test lib/*-test.ts",
"lint": "tsc && eslint lib/**/*.ts",
"format": "eslint lib/**/*.ts --fix",
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c && node bundle-types.mjs",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [
"typescript-library-template"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "22.19.8",
"@typescript-eslint/eslint-plugin": "8.54.0",
"@typescript-eslint/parser": "8.54.0",
"dts-buddy": "0.2.4",
"esbuild": "0.27.2",
"esbuild-register": "3.6.0",
"eslint": "8.57.1",
"rollup": "4.57.1",
"semantic-release": "25.0.3",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}