ts-dev-stack
Version:
Development stack for TypeScript libraries
81 lines (80 loc) • 1.85 kB
JSON
{
"name": "ts-dev-stack",
"version": "1.15.2",
"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.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/types/index.d.ts",
"bin": {
"ts-dev-stack": "bin/cli.cjs",
"tsds": "bin/cli.cjs"
},
"files": [
"dist",
"assets",
"scripts"
],
"scripts": {
"build": "node ../../dev/build/scripts/build.cjs",
"format": "biome check --write --unsafe src/ test/",
"test": "tsds test:node --no-timeouts",
"test:engines": "npm test",
"version": ""
},
"dependencies": {
"cross-spawn-cb": "^2.1.22",
"exit": "^0.1.2",
"getopts-compat": "^2.2.6",
"gh-pages": "^6.3.0",
"install-module-linked": "^1.1.62",
"link-unlink": "^0.1.24",
"queue-cb": "^1.4.16",
"readable-stream": "^2.3.8",
"resolve": "^1.22.10",
"resolve-bin-sync": "^0.1.12",
"tsds-biome": "^1.15.0",
"tsds-build": "^1.15.0",
"tsds-c8": "^1.15.0",
"tsds-lib": "*",
"tsds-mocha": "^1.15.0",
"tsds-publish": "^1.2.0",
"tsds-typedoc": "^1.16.0",
"tsds-validate": "^1.1.10",
"tsds-web-test-runner": "^1.15.1"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"module-link-unlink": "*",
"os-shim": "*",
"short-hash": "*",
"tsds-lib-test": "*"
},
"engines": {
"node": ">=0.8"
},
"tsds": {
"source": "src/index.ts"
}
}