-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.86 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
{
"name": "esm.dev",
"version": "3.0.0",
"description": "TypeScript library template",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/lib/index.js"
},
"bin": {
"esm.dev": "./dist/cli.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"esm.dev": "node ./src/cli.ts",
"prepare": "husky",
"start": "docker compose up --detach --remove-orphans",
"stop": "docker compose down",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jg-wright/esm.dev.git"
},
"keywords": [],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jg-wright/esm.dev/issues"
},
"homepage": "https://github.com/jg-wright/esm.dev#readme",
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@commitlint/types": "21.2.0",
"@types/http-proxy": "^1.17.17",
"@types/mustache": "^4.2.6",
"@types/node": "^24.11.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"prettier": "3.9.5",
"rimraf": "6.1.3",
"semantic-release": "25.0.5",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"lint-staged": {
"*.{md,json,js,jsx,ts,tsx,yml,yaml}": [
"npx prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"clipanion": "^4.0.0-rc.4",
"clipanion-generator-command": "^1.3.1",
"es-toolkit": "^1.49.0",
"escape-string-regexp": "^5.0.0",
"glob": "^13.0.6",
"http-proxy": "^1.18.1",
"ignore": "^7.0.5",
"minimatch": "^10.2.5",
"minipass": "^7.1.3",
"mustache": "^4.2.0",
"npm": "^11.4.1",
"tslib": "^2.8.1",
"typanion": "^3.14.0",
"update": "^0.7.4",
"zx": "^8.8.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-musl": "^4.62.2"
}
}