-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.87 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
{
"name": "@bengsfort/stdlib",
"description": "A collection of utilities that I am tired of re-implementing",
"author": "Matt Bengston <bengsfort@gmail.com> (https://bengsfort.dev)",
"homepage": "https://github.com/bengsfort/stdlib",
"version": "0.2.0",
"bugs": {
"url": "https://github.com/bengsfort/stdlib/issues"
},
"repository": "github:bengsfort/stdlib",
"license": "MIT",
"packageManager": "pnpm@10.4.1",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"exports": {
"./errors/*": {
"default": "./dist/errors/*.js",
"types": "./dist/errors/*.d.ts"
},
"./math/*": {
"default": "./dist/math/*.js",
"types": "./dist/math/*.d.ts"
},
"./logging/*": {
"default": "./dist/logging/*.js",
"types": "./dist/logging/*.d.ts"
},
"./logging/node/*": {
"default": "./dist/logging/node/*.js",
"types": "./dist/logging/node/*.d.ts"
},
"./formatting/*": {
"default": "./dist/formatting/*.js",
"types": "./dist/formatting/*.d.ts"
}
},
"files": [
"README.md",
"LICENSE.md",
"CHANGELOG.md",
"package.json",
"pnpm-lock.yaml",
"dist"
],
"prettier": "@bengsfort/eslint-config-flat/prettier.config.js",
"scripts": {
"changes:add": "pnpm changeset",
"changes:commit": "pnpm changeset version",
"build": "tsc --project tsconfig.build.json",
"watch": "tsc --project tsconfig.build.json --watch",
"clean": "rimraf ./dist/* ./.tsbuildinfo/*",
"test": "vitest",
"lint": "eslint",
"ci:publish": "pnpm publish -r --access public",
"prepublishOnly": "pnpm run clean && pnpm run build"
},
"devDependencies": {
"@bengsfort/eslint-config-flat": "^0.2.4",
"@changesets/cli": "^2.28.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
}
}