-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.77 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
{
"name": "packtory",
"version": "0.0.0-dev",
"description": "Effortless code bundling and publishing for npm packages",
"type": "module",
"scripts": {
"compile": "tsc --build",
"prettier": "prettier './**/*.{yml,yaml,json,md}'",
"prettier:check": "npm run prettier -- --check",
"prettier:fix": "npm run prettier -- --write",
"eslint": "eslint . --cache --cache-location './target/.eslintcache' --cache-strategy content --max-warnings 0",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"test": "npm run test:unit && npm run test:integration",
"pretest:unit": "tsc -b source/tsconfig.unit-tests.json",
"test:unit": "ava --config ava.config.js",
"pretest:integration": "tsc -b integration-tests/tsconfig.json",
"test:integration": "ava --config ava.integration.config.js"
},
"keywords": [
"bundler",
"bundling",
"npm",
"publish",
"modules",
"versioning",
"monorepo",
"publishing",
"package",
"packaging"
],
"author": "Mathias Schreck <schreck.mathias@gmail.com>",
"contributors": [
"Christian Rackerseder <github@echooff.de>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/enormora/packtory.git"
},
"dependencies": {
"@effect/schema": "0.60.4",
"@topcli/spinner": "2.1.2",
"@ts-morph/common": "0.26.0",
"cmd-ts": "0.13.0",
"effect": "2.2.5",
"kleur": "4.1.5",
"libnpmpublish": "10.0.1",
"mitt": "3.0.1",
"npm-registry-fetch": "18.0.2",
"semver": "7.6.3",
"ssri": "12.0.0",
"tar-stream": "3.1.7",
"true-myth": "8.5.0",
"ts-morph": "24.0.0",
"tslib": "2.8.1",
"unix-permissions": "6.0.0"
},
"devDependencies": {
"@ava/typescript": "5.0.0",
"@enormora/eslint-config-ava": "0.0.7",
"@enormora/eslint-config-base": "0.0.7",
"@enormora/eslint-config-node": "0.0.7",
"@enormora/eslint-config-typescript": "0.0.7",
"@types/libnpmpublish": "9.0.1",
"@types/node": "22.12.0",
"@types/npm-registry-fetch": "8.0.7",
"@types/semver": "7.5.8",
"@types/sinon": "17.0.3",
"@types/ssri": "7.1.5",
"@types/tar-stream": "3.1.3",
"ava": "6.2.0",
"eslint": "8.57.1",
"get-port": "7.1.0",
"prettier": "3.3.3",
"sinon": "19.0.2",
"type-fest": "4.33.0",
"typescript": "5.7.3",
"verdaccio": "6.0.4"
},
"engines": {
"node": "^20 || ^22"
}
}