-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
49
50
51
52
53
54
{
"name": "@escapace/typelevel",
"description": "",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bugs": "https://github.com/escapace/typelevel/issues",
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@escapace/pnpm-pack": "0.8.0",
"@ls-lint/ls-lint": "2.3.1",
"eslint": "9.35.0",
"eslint-config-escapace": "5.14.0",
"lefthook": "1.13.1",
"prettier": "3.6.2",
"prettier-config-escapace": "1.2.2",
"syncpack": "13.0.4",
"tsd": "0.33.0",
"typescript": "5.9.3"
},
"engines": {
"pnpm": ">=10.14.0"
},
"files": [
"hkt.d.ts",
"index.d.ts",
"typelevel"
],
"homepage": "https://github.com/escapace/typelevel",
"license": "MPL-2.0",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/typelevel",
"scripts": {
"build": "rm -rf index.d.ts hkt.d.ts typelevel && tsc -p tsconfig-build.json --emitDeclarationOnly --declarationDir .",
"format": "eslint --no-warn-ignored --fix && prettier -uw .",
"lint": "ls-lint --config .ls-lint.yaml && eslint",
"ls-lint": "ls-lint --config .ls-lint.yaml",
"pack": "pnpm-pack package --pack-destination lib",
"prepare": "lefthook install",
"syncpack": "syncpack fix-mismatches && syncpack-set-semver-ranges && syncpack format",
"test": "echo ok",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"types": "index.d.ts"
}