ts-ci/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

2020-05-14 00:47:15 +02:00
{
"name": "#{REPO_NAME}#",
"version": "0.0.0",
"description": "#{DESC}#",
"repository": {
"type": "git",
"url": "git://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#.git"
},
"scripts": {
2021-08-01 04:56:18 +02:00
"build": "tsc",
2023-05-21 13:57:34 +02:00
"test": "vitest",
2020-05-27 22:02:44 +02:00
"lint:check": "eslint . --ext .ts,.tsx",
"lint": "npm run lint:check -- --fix",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
2023-02-25 14:29:46 +01:00
"format:check": "npm run _format -- --list-different",
2024-06-15 11:21:09 +02:00
"link-in-app": "tsx scripts/link-in-app.ts"
2020-05-27 22:02:44 +02:00
},
2023-05-21 10:14:54 +02:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js",
"./tools": "./dist/tools/index.js"
},
2020-05-27 22:02:44 +02:00
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
2020-05-14 00:47:15 +02:00
},
"author": "u/#{USER_OR_ORG}#",
"license": "MIT",
"files": [
2020-08-18 16:48:58 +02:00
"src/",
"dist/",
"!dist/tsconfig.tsbuildinfo"
2020-05-14 00:47:15 +02:00
],
"keywords": [],
2023-07-25 01:00:35 +02:00
"homepage": "https://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#",
2020-05-14 00:47:15 +02:00
"devDependencies": {
2023-05-21 07:49:56 +02:00
"@types/node": "^20.2.1",
2024-06-15 11:21:09 +02:00
"typescript": "^5.4.5",
2023-05-21 07:49:56 +02:00
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
2021-05-21 08:18:11 +02:00
"husky": "^4.3.8",
2021-08-01 02:43:03 +02:00
"lint-staged": "^11.1.1",
2024-06-15 11:21:09 +02:00
"prettier": "^3.3.2",
"vitest": "^1.6.0",
"tsx": "^4.15.5",
"react": "^18.3.1",
"@types/react": "^18.3.3"
},
"publishConfig": {
"access": "public"
2020-05-14 00:47:15 +02:00
}
}