generated from fp-tx/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.8 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@fp-tx/documenter",
"version": "0.1.2",
"description": "Custom markdown generation using api-extractor",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./*": {
"import": "./dist/*.mjs",
"default": "./dist/*.js"
}
},
"bin": {
"fp-tx-documenter": "./bin.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:main": "pnpm run prerelease && npm publish ./dist --tag main",
"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",
"test:e2e": "tsx ./test/integration/run-integration.ts",
"test:e2e:ls": "pnpm run test:e2e && :",
"docs:extract": "api-extractor run --local --verbose",
"docs:pack": "tsx ./src/bin -i ./temp/documenter.api.json -o ./docs",
"docs:ci": "pnpm run docs:extract && pnpm run docs:pack",
"docs": "pnpm run build && pnpm run docs:ci",
"docs:ls": "pnpm run docs && :",
"docs:start": "docusaurus start",
"docs:build": "pnpm run docs && docusaurus build",
"docs:serve": "docusaurus serve"
},
"lint-staged": {
"src/**/*.ts": [
"tsc-files",
"prettier --write",
"eslint --fix-type layout --fix --cache",
"pnpm run test:e2e:ls",
"pnpm run docs:ls"
]
},
"repository": {
"type": "git",
"url": "https://github.com/fp-tx/documenter.git"
},
"author": "Jacob Alford <jacob.alford@me.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fp-tx/documenter/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.10",
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@docusaurus/core": "^3.1.1",
"@docusaurus/module-type-aliases": "^3.1.1",
"@docusaurus/preset-classic": "^3.1.1",
"@docusaurus/tsconfig": "^3.1.1",
"@docusaurus/types": "^3.1.1",
"@fp-tx/build-tools": "^0.4.0",
"@mdx-js/react": "^3.0.1",
"@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-plugin-jsdoc": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsc-files": "^1.1.4",
"tsup": "^8.0.0",
"tsx": "^4.7.1",
"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",
"@microsoft/api-extractor-model": "^7.28.10",
"@microsoft/tsdoc": "^0.14.2",
"commander": "^12.0.0",
"prism-react-renderer": "^2.3.1"
},
"peerDependencies": {
"prettier": "^3.1.0"
}
}