-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "namedays",
"version": "3.0.0",
"description": "A minimal namedays API",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"release": "pnpm build && pnpm changeset publish",
"review": "pnpm install --frozen-lockfile && pnpm format-check && pnpm lint && pnpm test && pnpm build",
"test": "vitest --run"
},
"devDependencies": {
"@changesets/cli": "2.27.11",
"@tammergard/eslint-config-base": "5.0.6",
"@tammergard/prettier-config": "2.1.0",
"@tammergard/tsconfig": "2.8.0",
"eslint": "8.57.1",
"prettier": "3.4.2",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "3.0.2"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"homepage": "https://github.com/filiptammergard/namedays#readme",
"bugs": {
"url": "https://github.com/filiptammergard/namedays/issues"
},
"license": "MIT",
"author": {
"name": "Filip Tammergård",
"email": "filip+npm@tammergard.se",
"url": "https://tammergard.se"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filiptammergard/namedays.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@9.5.0"
}