snowflake-uid/package.json
2023-08-22 01:46:01 +00:00

24 lines
623 B
JSON

{
"name": "@templates/typescript-library",
"version": "1.0.0",
"description": "Template project for creating new TypeScript library packages",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"tsc": "tsc --build",
"clean": "rm -rf ./build"
},
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/templates/npm/"
},
"repository": {
"type": "git",
"url": "https://gitea.jbrumond.me/templates/typescript-library.git"
},
"author": "James Brumond <https://jbrumond.me>",
"license": "ISC",
"devDependencies": {
"typescript": "^5.1.3"
}
}