-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.01 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
{
"name": "@akashrajpurohit/ts-npm-template",
"version": "2.2.4",
"description": "A project template to bootstrap NPM package with Typescript",
"repository": {
"type": "git",
"url": "https://github.com/AkashRajpurohit/ts-npm-template.git"
},
"homepage": "https://github.com/AkashRajpurohit/ts-npm-template",
"bugs": "https://github.com/AkashRajpurohit/ts-npm-template/issues",
"author": {
"name": "AkashRajpurohit",
"email": "me@akashrajpurohit.com",
"url": "https://akashrajpurohit.com"
},
"keywords": [
"typescript-template",
"npm-boilerplate",
"changesets-boilerplate"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"build": "NODE_ENV=production tsup",
"build:docs": "typedoc --out docs ./src/index.ts",
"dev": "tsup --watch",
"format": "biome check --write ./src",
"lint": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"changeset": "changeset",
"check-format": "biome check ./src",
"check-exports": "attw --pack .",
"ci": "npm run check-exports && npm run check-format && npm run lint && npm run test:coverage && npm run build"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@biomejs/biome": "^1.9.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.1",
"tsup": "^8.3.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"publishConfig": {
"access": "public"
}
}