-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.34 KB
/
package.json
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
{
"name": "sort-order",
"version": "1.1.2",
"description": "Combine a series of sort functions to create complex sort orders",
"author": "Cameron Hunter <[email protected]>",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest",
"release": "pnpm run build && pnpm run publish:npm && pnpm run publish:github",
"publish:npm": "npm_config_registry=https://registry.npmjs.org/ pnpm changeset publish",
"publish:github": "pnpm run github:set_scope && npm_config_registry=https://npm.pkg.github.com/ pnpm changeset publish",
"github:set_scope": "jq --arg githubScope \"$GITHUB_REPOSITORY_OWNER\" '.name |= (if (index(\"@\") == null) then \"@\" + $githubScope + \"/\" + . else . end)' package.json > package-github.json && mv package-github.json package.json"
},
"files": [
"build"
],
"keywords": [
"sort",
"ordering",
"comparator"
],
"devDependencies": {
"@cameronhunter/prettier-config": "^5.0.0",
"@changesets/cli": "^2.26.2",
"@tsconfig/strictest": "^2.0.2",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]",
"prettier": "@cameronhunter/prettier-config",
"repository": {
"type": "git",
"url": "[email protected]:cameronhunter/sort-order.git"
}
}