-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
41
42
{
"name": "@sitebender/operations",
"version": "0.0.36",
"description": "Operations module for configured algorithmic operations.",
"license": "MIT",
"author": "Charles F. Munat <[email protected]>",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"index.ts",
"lib"
],
"scripts": {
"build": "tsc && vite build",
"bump": "pnpm version patch --force",
"bump:major": "pnpm version major --force",
"bump:minor": "pnpm version minor --force",
"check:exports": "pnpx find-unused-exports",
"check:packages": "pnpx npm-check -u",
"dep": "pnpm fmt && pnpm lint && pnpm check:packages && pnpm build && rm -rf .cache .history dist",
"fmt": "pnpm prettier . --write",
"lint": "pnpx oxlint@latest",
"pub": "npm publish --access=public",
"push": "git add -A && pnpm bump && git push",
"test": "vitest",
"test:cov": "vitest --coverage.exclude=temp/** --coverage"
},
"devDependencies": {
"@sitebender/fp": "^0.0.20",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"fast-check": "^3.18.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vitest-localstorage-mock": "^0.1.2"
}
}