-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.66 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "fp-tx-template",
"version": "0.1.0",
"description": "A template for fp-tx libraries",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./*": {
"import": "./dist/*.mjs",
"default": "./dist/*.js"
}
},
"scripts": {
"postinstall": "husky install",
"lint-staged": "lint-staged",
"commitlint": "commitlint --edit",
"typecheck": "tsc --project ./tsconfig.json",
"typecheck:watch": "tsc --project ./tsconfig.json --watch",
"build": "tsup",
"build:check": "attw --pack ./dist",
"prerelease": "pnpm run build",
"release": "pnpm publish ./dist",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier \"./{src,test,examples,scripts}/**/*.ts\"",
"prettier:check": "prettier \"./{src,test,examples,scripts}/**/*.ts\" --check",
"prettier:fix": "prettier --write \"./{src,test,examples,scripts}/**/*.ts\"",
"test": "jest",
"test:ci": "pnpm run test --ci"
},
"lint-staged": {
"src/**/*.ts": [
"tsc-files",
"prettier --write",
"eslint --fix-type layout --fix --cache"
]
},
"repository": {
"type": "git",
"url": "https://github.com/fp-tx/template.git"
},
"author": "Jacob Alford <jacob.alford@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fp-tx/template/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.10",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@fp-tx/build-tools": "^0.3.0",
"@microsoft/api-documenter": "^7.23.17",
"@microsoft/api-extractor": "^7.39.1",
"@swc/core": "^1.3.96",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.8",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^3.0.0",
"expect-type": "^0.17.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"prettier-plugin-jsdoc": "^1.1.1",
"tsc-files": "^1.1.4",
"tsup": "^8.0.0",
"type-fest": "^4.10.0",
"typescript": "^5.2.0"
},
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"dependencies": {
"@fp-tx/core": "^0.2.1"
}
}