-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 KB
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
{
"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",
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"license": "MIT",
"engines": {
"node": ">= 24"
},
"volta": {
"node": "25.2.1",
"npm": "11.6.2"
},
"packageManager": "npm@11.6.2",
"publishConfig": {
"access": "public"
},
"scripts": {
"setup": "node ./scripts/setup.ts",
"build": "rimraf build && tsgo --project tsconfig.build.json",
"clean": "rimraf build coverage",
"type:check": "tsgo --project tsconfig.json",
"lint": "biome check . --write --unsafe",
"lint:check": "biome ci .",
"test": "node --test src/**/*.test.ts",
"test:watch": "node --test --watch src/**/*.test.ts",
"test:coverage": "c8 -r html node --test --experimental-test-coverage src/**/*.test.ts",
"test:setup": "node ./scripts/test-setup.ts",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.0.9",
"@types/prompts": "^2.4.9",
"@typescript/native-preview": "^7.0.0-dev.20260108.1",
"c8": "^10.1.3",
"commitizen": "^4.3.1",
"cspell": "^9.6.0",
"cz-conventional-changelog": "^3.3.0",
"prompts": "^2.4.2",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"slugify": "^1.6.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}