This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
generated from tomchen/example-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.33 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
{
"name": "next-param-helpers",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "pnpm run clean && pnpm run build:ts",
"build:ts": "tsc -p config/tsconfig.build.json",
"clean": "node tools/cleanup",
"package": "pnpm run build && pnpm pack",
"publish": "changeset publish",
"release": "npm-run-all --serial package publish",
"addscope": "node tools/packagejson name @richard-better/next-param-helpers",
"lint": " pnpm run lint:check",
"lint:check": "npm-run-all --parallel lint:check:*",
"lint:check:js+ts": "eslint --ext .js,.jsx,.mjs,.ts,.tsx,.mts --ignore-path .gitignore .",
"lint:check:format": "prettier --check .",
"lint:check:types": "tsc --noEmit",
"lint:fix": "npm-run-all --serial lint:fix:*",
"lint:fix:js+ts": "pnpm run lint:js+ts --fix",
"lint:fix:format": "prettier --write .",
"test": "npm-run-all --parallel test:js+ts test:types",
"test:js+ts": "jest --coverage --no-cache --runInBand",
"test:types": "tsd -f src/param-object-type.test-d.ts"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"next",
"nextjs",
"typescript",
"regex"
],
"author": "Richard B <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/richard-better/next-param-helpers",
"repository": {
"type": "git",
"url": "[email protected]:richard-better/next-param-helpers.git"
},
"bugs": {
"url": "https://github.com/richard-better/next-param-helpers/issues"
},
"devDependencies": {
"@changesets/cli": "^2.25.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/next": "^1.0.3",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"tsd": "^0.24.1",
"typescript": "^4.8.4"
}
}