generated from escapace/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.36 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
{
"name": "@escapace/willow",
"description": "",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "opensource@escapace.com"
},
"bin": {
"willow": "./lib/node/cli.js"
},
"bugs": "https://github.com/escapace/willow/issues",
"dependencies": {
"@pnpm/read-package-json": "^1000.0.1",
"archiver": "^7.0.1",
"builtin-modules": "^4.0.0",
"chalk": "^5.3.0",
"esbuild": "^0.23.0",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"lodash-es": "^4.17.21",
"semver": "^7.6.2",
"split2": "^4.2.0",
"temp-dir": "^3.0.0",
"uuid": "^11.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@escapace/pnpm-pack": "0.5.3",
"@ls-lint/ls-lint": "2.2.3",
"@types/archiver": "6.0.2",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@types/node": "20.14.9",
"@types/semver": "7.5.8",
"@types/split2": "4.2.3",
"@types/uuid": "10.0.0",
"@vitest/coverage-v8": "1.6.0",
"eslint": "9.6.0",
"eslint-config-escapace": "5.4.0",
"esroll": "0.3.0",
"knip": "5.23.3",
"lefthook": "1.6.18",
"prettier": "3.3.2",
"prettier-config-escapace": "1.2.1",
"syncpack": "13.0.0",
"tsx": "4.16.0",
"typescript": "5.5.3",
"vitest": "1.6.1"
},
"engines": {
"node": ">=20.15.0",
"pnpm": ">=9.4.0"
},
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/node/index.js"
}
},
"files": [
"lib/node",
"lib/types"
],
"homepage": "https://github.com/escapace/willow#readme",
"license": "MPL-2.0",
"module": "./lib/node/index.js",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": "escapace/willow",
"scripts": {
"build": "tsx scripts/build.ts",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier -uw .",
"lint": "ls-lint --config .ls-lint.yaml && knip && 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": "vitest --no-watch --coverage",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"types": "./lib/types/index.d.ts"
}