vehicle-widget
Version:
A starter vanilla-ts (extended) template that began with Vite 3.x, prepared for writing node utility libraries in typescript. This starter is meant to provide rapid node package development and publishing onto npm.
59 lines (58 loc) • 1.63 kB
JSON
{
"name": "vehicle-widget",
"version": "1.0.3",
"description": "A starter vanilla-ts (extended) template that began with Vite 3.x, prepared for writing node utility libraries in typescript. This starter is meant to provide rapid node package development and publishing onto npm.",
"license": "MIT",
"keywords": [
"vite",
"vanilla-ts",
"template",
"boilerplate",
"node",
"module",
"library"
],
"type": "module",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"typings": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"docs": "yarn typedoc",
"build": "vite build",
"build:watch": "vite build --watch && typedoc",
"dev": "vite && typedoc",
"prepare": "husky install",
"prettier": "prettier --write .",
"preview": "vite preview",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@microsoft/tsdoc": "^0.14.1",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"eslint": "^8.55.0",
"husky": "^8.0.3",
"prettier": "3.1.1",
"rollup-plugin-visualizer": "^5.11.0",
"tslib": "^2.4.0",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-progress": "^0.0.7",
"vitest": "^1.0.4"
}
}