-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) 路 1.53 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) 路 1.53 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
{
"name": "ts-security-utils",
"type": "module",
"version": "0.0.2",
"description": "A collection of utility functions for the ts-security package.",
"author": "Chris Breuer <chris@stacksjs.org> (https://github.com/chrisbbreuer)",
"license": "MIT",
"homepage": "https://github.com/stacksjs/ts-security#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/ts-security.git"
},
"bugs": {
"url": "https://github.com/stacksjs/ts-security/issues"
},
"keywords": [
"utils",
"utility",
"functions",
"helpers",
"security",
"crypto",
"cryptography",
"bun",
"stacks",
"typescript",
"javascript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "bun build.ts",
"lint": "bunx --bun pickier lint . --config pickier.config.ts --max-warnings 9999",
"lint:fix": "bunx --bun pickier lint . --fix --config pickier.config.ts --max-warnings 9999",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"bun-plugin-dtsx": "^0.21.17",
"typescript": "^6.0.3"
}
}