-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.55 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.55 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
{
"name": "dynamodb-tooling",
"type": "module",
"version": "0.3.2",
"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 eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"changelog": "bunx logsmith --verbose",
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
"release": "bun run changelog:generate && bunx bumpx prompt --recursive",
"postinstall": "bunx git-hooks",
"prepublishOnly": "bun --bun run build",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@stacksjs/bumpx": "^0.1.17",
"@stacksjs/cli": "^0.70.21",
"@stacksjs/eslint-config": "^4.8.2-beta.1",
"@stacksjs/gitlint": "^0.1.5",
"@stacksjs/logging": "^0.70.21",
"@stacksjs/logsmith": "^0.1.8",
"@stacksjs/storage": "^0.70.21",
"@types/bun": "^1.2.8",
"@types/tar": "^6.1.13",
"buddy-bot": "^0.9.7",
"bun-git-hooks": "^0.2.19",
"bun-plugin-dtsx": "^0.21.9",
"bunfig": "^0.8.2",
"dynamodb-toolbox": "^2.0.0",
"tar": "^7.4.3",
"typescript": "^5.8.2"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}