-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@theravenouscorporate/ts-template",
"version": "1.0.0",
"description": "Template for creating TypeScript projects",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"scripts": {
"update": "yarn upgrade-interactive",
"test": "vitest run",
"test:watch": "vitest",
"build": "tsup && gen-esm-wrapper dist/index.js dist/index.mjs",
"clean": "node scripts/clean-dist.mjs",
"lint": "eslint src test --ext mjs,js,ts --fix",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"typecheck": "tsc -p tsconfig.eslint.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"postinstall": "husky install",
"prepack": "rollup-type-bundler -v -e node:url node:events && pinst --disable",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRavenousCorporate/ts-template.git"
},
"keywords": [],
"author": "@theravenouscorporate",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheRavenousCorporate/ts-template/issues"
},
"homepage": "https://github.com/TheRavenousCorporate/ts-template#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@favware/cliff-jumper": "^2.1.1",
"@favware/npm-deprecate": "^1.0.7",
"@favware/rollup-type-bundler": "^2.0.0",
"@sapphire/eslint-config": "^4.4.3",
"@sapphire/ts-config": "^4.0.0",
"@types/eslint": "^8.44.0",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.33.0",
"esbuild-plugin-file-path-extensions": "^1.0.0",
"esbuild-plugin-version-injector": "^1.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-prettier": "^4.2.1",
"gen-esm-wrapper": "^1.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}