generated from gjuchault/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.69 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
79
80
81
{
"name": "@gjuchault/typescript-library-starter",
"version": "0.0.0-development",
"description": "Yet another typescript library starter template",
"keywords": [
"typescript",
"library",
"starter",
"template"
],
"homepage": "https://github.com/gjuchault/typescript-library-starter",
"bugs": "https://github.com/gjuchault/typescript-library-starter/issues",
"author": "Gabriel Juchault <gabriel.juchault@gmail.com>",
"repository": "gjuchault/typescript-library-starter",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/src/index.d.ts",
"license": "MIT",
"engines": {
"node": "^18.7.0 || >= 16",
"npm": "^8.16.0 || >= 8"
},
"volta": {
"node": "18.7.0",
"npm": "8.16.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "node -r ./esbuild-hook ./scripts/setup",
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "node -r ./esbuild-hook ./scripts/build",
"clean": "node -r ./esbuild-hook ./scripts/clean",
"type:dts": "tsc --emitDeclarationOnly",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:setup": "node -r ./esbuild-hook ./scripts/testSetup",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.7.15",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"c8": "^7.12.0",
"cspell": "^6.8.1",
"esbuild": "^0.15.7",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"semantic-release": "^19.0.5",
"slugify": "^1.6.5",
"source-map-support": "^0.5.21",
"typescript": "^4.8.2",
"vitest": "^0.22.1"
},
"overrides": {
"semver-regex": "3.1.4"
}
}