-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
43
44
45
46
47
48
{
"name": "@susisu/effectful",
"version": "0.5.0",
"description": "Algebraic effects in TypeScript based on generators",
"repository": "https://github.com/susisu/effectful.git",
"author": "Susisu <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"lib",
"src",
"!src/**/*.{test,spec}.{ts,tsx}",
"!src/**/__tests__"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"scripts": {
"format": "prettier --write '*.js' src",
"format:check": "prettier --check '*.js' src",
"lint": "eslint --fix '*.js' src",
"lint:check": "eslint '*.js' src",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --coverage",
"test:dev": "vitest dev --coverage.enabled --coverage.reporter=text",
"build": "tsup",
"prepublishOnly": "run-s format:check lint:check typecheck test build"
},
"devDependencies": {
"@susisu/eslint-config": "^0.0.90",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/eslint-plugin": "^1.1.4",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "~5.6.2",
"vitest": "^2.1.1"
}
}