-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
39
40
{
"name": "pruni",
"version": "1.0.0",
"description": "Calculation of information units in any form and any format.",
"repository": "oritwoen/pruni",
"keywords": ["math", "crypto", "units", "calc", "format", "mining", "hash"],
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vitest dev",
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
"test": "pnpm lint && vitest run --coverage",
"build": "unbuild",
"prepack": "unbuild",
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish"
},
"devDependencies": {
"vitest": "0.26.3",
"eslint": "8.31.0",
"unbuild": "1.0.2",
"typescript": "4.9.4",
"standard-version": "9.5.0",
"@vitest/coverage-c8": "0.26.3"
},
"packageManager": "[email protected]"
}