forked from peerigon/template-public-package
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.4 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@peerigon/typescript-toolkit",
"version": "0.0.0-semantically-released",
"description": "🔧✨ Tiny helpers for TypeScript applications",
"keywords": [],
"homepage": "https://github.com/peerigon/typescript-toolkit#readme",
"bugs": {
"url": "https://github.com/peerigon/typescript-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/typescript-toolkit.git"
},
"license": "MIT",
"author": "Peerigon GmbH <hello@peerigon.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/main.js",
"./assert": "./dist/assert/assert.js",
"./dedupe": "./dist/dedupe/dedupe.js",
"./emitter": "./dist/emitter/emitter.js",
"./enums": "./dist/enums/enums.js",
"./match": "./dist/match/match.js",
"./need": "./dist/need/need.js",
"./result": "./dist/result/result.js",
"./signals": "./dist/signals/signals.js",
"./unwrap": "./dist/unwrap/unwrap.js"
},
"main": "./dist/main.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"prepare": "husky",
"test": "run-p test:*",
"test:format": "prettier --check .",
"test:lint": "eslint --max-warnings 0 --cache .",
"test:types": "tsc",
"test:unit": "vitest --run",
"test:jsr": "jsr publish --dry-run --allow-dirty",
"test:build": "run-s build test:build:*",
"test:build:size": "size-limit",
"vitest": "vitest",
"build": "run-s build:*",
"build:clear": "rimraf dist",
"build:tsc": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"env-var": "^7.5.0"
},
"devDependencies": {
"@djankies/vitest-mcp": "0.5.1",
"@eslint/mcp": "0.3.5",
"@peerigon/configs": "^15.4.0",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.2",
"@size-limit/preset-small-lib": "^12.1.0",
"@tanstack/query-core": "^5.100.11",
"@types/node": "^25.8.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsr": "^0.14.3",
"lint-staged": "^17.0.4",
"npm-run-all2": "^8.0.4",
"pin-github-action": "^3.4.0",
"prettier": "^3.8.3",
"rimraf": "^6.0.1",
"secretlint": "^13.0.2",
"semantic-release": "^25.0.3",
"ts-lsp-mcp": "0.1.3",
"typescript": "^5.9.3",
"vitest": "^4.1.6"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}