-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.44 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.44 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
{
"name": "@rileybarabash/unknown",
"version": "0.1.1",
"description": "Only one way to find out.",
"keywords": [
"mysterious",
"enigmatic",
"cryptic"
],
"author": "Riley Barabash",
"homepage": "https://github.com/rileybarabash/unknown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rileybarabash/unknown.git"
},
"license": "ISC",
"scripts": {
"build": "rm -rf ./dist && tsc --project ./tsconfig.json && tsc-alias --project ./tsconfig.json",
"use": "sh -c 'IFS=\"\" tsx ./src/scripts/\"$*\".ts' sh",
"x": "sh -c 'IFS=\"\" node ./dist/scripts/bin/\"$*\".js' sh",
"git": "sh -c 'pnpm build && git add --all && git commit \"$@\" && git push --force' sh",
"undo-git": "git reset --soft HEAD^",
"redo-git": "git reset --soft HEAD",
"re-git": "pnpm build && git add --all && git commit --amend --no-edit && git push --force",
"re-git-edit": "sh -c 'pnpm build && git add --all && git commit --amend \"$@\" && git push --force' sh"
},
"bin": {
"main": "dist/scripts/bin/main.js"
},
"main": "dist",
"types": "dist",
"devDependencies": {
"@types/node": "^20.10.7",
"prettier": "^3.1.1",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}