-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"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": "[email protected]",
"engines": {
"node": ">=20"
},
"repository": "[email protected]: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": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.1",
"@types/node": "22.9.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"dts-buddy": "0.2.4",
"esbuild": "0.24.0",
"esbuild-register": "3.6.0",
"eslint": "8.57.1",
"rollup": "4.27.3",
"semantic-release": "24.2.0",
"tslib": "2.8.1",
"typescript": "5.7.2"
}
}