-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.75 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
83
84
85
{
"name": "dynamodb-tooling",
"type": "module",
"version": "0.3.3",
"description": "A toolkit of useful DynamoDB goodies.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/dynamodb-tooling#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/dynamodb-tooling.git"
},
"bugs": {
"url": "https://github.com/stacksjs/dynamodb-tooling/issues"
},
"keywords": [
"dynamodb",
"utilities",
"typescript",
"bun",
"package"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"dbtooling": "./dist/cli.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "bun --bun build.ts && bun --bun run compile",
"compile": "bun build ./bin/cli.ts --compile --minify --outfile dist/dbtooling",
"create-offline-table": "aws dynamodb create-table --table-name=MyOfflineTable --attribute-definitions AttributeName=Artist,AttributeType=S AttributeName=SongTitle,AttributeType=S --key-schema AttributeName=Artist,KeyType=HASH AttributeName=SongTitle,KeyType=RANGE --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 --endpoint-url http://localhost:8000 --region us-east-1",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"lint": "bunx --bun pickier lint . --max-warnings 9999",
"lint:fix": "bunx --bun pickier lint . --fix --max-warnings 9999",
"format": "bunx --bun pickier format .",
"format:fix": "bunx --bun pickier format . --write",
"changelog": "bunx logsmith --verbose",
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
"postinstall": "bunx git-hooks",
"prepublishOnly": "bun --bun run build",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@stacksjs/bumpx": "^0.2.4",
"@stacksjs/cli": "^0.70.23",
"@stacksjs/gitlint": "^0.1.5",
"@stacksjs/logging": "^0.70.23",
"@stacksjs/logsmith": "^0.2.1",
"@stacksjs/storage": "^0.70.23",
"@types/bun": "^1.3.10",
"@types/tar": "^6.1.13",
"buddy-bot": "^0.9.17",
"bun-git-hooks": "^0.3.1",
"bun-plugin-dtsx": "^0.21.17",
"bunfig": "^0.15.6",
"debug": "^4.4.3",
"dynamodb-toolbox": "^2.8.0",
"tar": "^7.5.10",
"typescript": "^5.9.3"
},
"git-hooks": {
"pre-commit": {
"stagedLint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
},
"autoRestage": true
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}