-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.82 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
{
"name": "@fp-tx/build-tools",
"version": "0.10.0",
"repository": {
"type": "git",
"url": "https://github.com/fp-tx/build-tools.git"
},
"license": "MIT",
"author": "Jacob Alford <[email protected]>",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"node": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"./package.json": "./dist/package.json"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@fp-tx/build-tools": "link:@fp-tx/build-tools",
"@swc/core": "^1.3.107",
"@swc/jest": "^0.2.31",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@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-unused-imports": "^3.0.0",
"fast-check": "^3.15.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"prettier": "~3.1.1",
"prettier-plugin-jsdoc": "^1.1.1",
"tsc-files": "^1.1.4",
"tsup": "^8.0.0",
"typescript": "^5.6.0"
},
"peerDependencies": {
"tsup": "^8.0.0"
},
"dependencies": {
"@ts-morph/common": "^0.24.0",
"colorette": "^2.0.20",
"esbuild-plugin-file-path-extensions": "^1.0.0",
"fp-ts": "^2.16.1",
"glob": "^10.3.10",
"schemata-ts": "^2.2.4",
"ts-morph": "^23.0.0",
"type-fest": "^4.24.0"
},
"scripts": {
"test": "jest --testPathIgnorePatterns=e2e",
"test-e2e": "pnpm run build && jest --testPathPattern=e2e",
"test:ci": "pnpm run test --ci && pnpm run test-e2e --ci",
"postinstall": "husky install",
"build": "tsup",
"build:check": "attw --pack ./dist",
"prerelease": "pnpm run build && pnpm run build:check",
"release:main": "pnpm run prerelease && npm publish ./dist --tag main",
"typecheck": "tsc --project tsconfig.json --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"commitlint": "commitlint --edit",
"lint": "eslint \"src/**/*.ts\"",
"lint:staged": "lint-staged",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"prettier": "prettier \"./src/**/*.ts\"",
"prettier:check": "prettier \"./{src,test}/**/*.ts\" --check",
"prettier:fix": "prettier --write \"./src/**/*.ts"
},
"lint-staged": {
"src/**/*.ts": [
"tsc-files",
"prettier --write",
"eslint --fix-type layout --fix --cache",
"pnpm run prerelease"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}