@yeoman/namespace
Version:
Namespace parsing for yeoman's generator/environment stack
47 lines (46 loc) • 1.05 kB
JSON
{
"name": "@yeoman/namespace",
"version": "2.1.0",
"private": false,
"description": "Namespace parsing for yeoman's generator/environment stack",
"keywords": [
"yeoman",
"api"
],
"homepage": "http://yeoman.io",
"repository": "yeoman/yeoman-api",
"license": "MIT",
"author": "The Yeoman Team",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf dist",
"clean-all": "npm run clean && rimraf node_modules",
"precommit": "lint-staged",
"prepare": "npm run build",
"pretest": "tsc -p tsconfig.test.json",
"test": "vitest run --coverage"
},
"engines": {
"node": "^16.13.0 || >=18.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^22.19.17"
}
}