generated from jasonkuhrt/template-typescript-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 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
75
76
77
78
79
{
"name": "saidify",
"version": "0.0.0-dripip",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kentbull/saidify.git"
},
"author": "Kent Bull",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"type": "module",
"files": [
"src",
"build"
],
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
},
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
}
}
},
"scripts": {
"build:toc": "markdown-toc README.md -i --maxdepth 4 && dprint fmt README.md",
"format": "dprint fmt",
"lint": "eslint . --fix",
"dev": "pnpm clean && tsc --build --watch tsconfig.cjs.json tsconfig.esm.json",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > build/cjs/package.json",
"build:esm": "tsc --project tsconfig.esm.json",
"clean": "tsc --build --clean && rm -rf build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepack": "pnpm build",
"check": "pnpm check:format && pnpm check:lint && pnpm check:types && pnpm check:publint",
"check:format": "dprint check",
"check:lint": "eslint . --max-warnings 0",
"check:types": "tsc --noEmit",
"check:publint": "publint run --strict"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"buffer": "^6.0.3",
"cbor": "^9.0.2",
"msgpack5": "^6.0.2"
},
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"@tsconfig/recommended": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/inquirer": "9.0.7",
"@types/msgpack5": "^3.4.6",
"@types/node": "22.4.0",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"@vitest/coverage-v8": "^2.0.5",
"dripip": "0.10.0",
"eslint": "8.57.0",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-tsdoc": "0.3.0",
"execa": "9.3.1",
"fast-glob": "3.3.2",
"fs-jetpack": "5.1.0",
"markdown-toc": "1.2.0",
"publint": "^0.2.10",
"tsx": "4.17.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.1.0",
"vitest": "2.0.5"
}
}