-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "@justmiracle/result",
"private": false,
"version": "1.2.0",
"module": "dist/index.cjs",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"type": "module",
"description": "A simple result type for TypeScript",
"author": "RinYato <[email protected]> (https://rinyato.com)",
"license": "MIT",
"repository": {
"type": "github",
"url": "git+https://github.com/rin-yato/miracle-result.git"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"test:run": "vitest --run",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"ci": "pnpm run test:run && pnpm run typecheck && pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1",
"typescript": "^5.0.2",
"vitest": "^1.0.4"
},
"bugs": {
"url": "https://github.com/rin-yato/miracle-result/issues"
},
"homepage": "https://github.com/rin-yato/miracle-result#readme"
}