ts-dev-stack
Version:
Development stack for TypeScript libraries
81 lines (80 loc) • 1.69 kB
JSON
{
"name": "ts-dev-stack",
"version": "1.18.8",
"description": "Development stack for TypeScript libraries",
"keywords": [
"c8",
"dev",
"development",
"mocha",
"rollup",
"stack",
"test",
"typescript"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/ts-dev-stack.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"bin": {
"tsds": "bin/cli.js"
},
"files": [
"dist",
"assets",
"scripts"
],
"scripts": {
"build": "node ../../scripts/build.cjs",
"format": "biome check --write --unsafe",
"test": "mocha --no-timeouts test/**/*.test.*",
"test:engines": "npm test",
"version": ""
},
"dependencies": {
"cross-spawn-cb": "*",
"exit": "*",
"getopts-compat": "*",
"gh-pages": "*",
"install-module-linked": "^1.2.5",
"link-unlink": "*",
"queue-cb": "*",
"readable-stream": "^2.3.8",
"resolve": "*",
"resolve-bin-sync": "*",
"tsds-biome": "*",
"tsds-build": "*",
"tsds-c8": "*",
"tsds-lib": "*",
"tsds-mocha": "*",
"tsds-publish": "*",
"tsds-typedoc": "*",
"tsds-validate": "*",
"tsds-web-test-runner": "*"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"module-link-unlink": "*",
"os-shim": "*",
"short-hash": "*",
"tsds-lib-test": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}