-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
87 lines (87 loc) · 2.53 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
{
"name": "denoify",
"version": "1.6.16",
"homepage": "https://denoify.land",
"description": "For NPM module authors that would like to support Deno but do not want to write and maintain a port.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./lib/config/parseParams": "./dist/lib/config/parseParams.js"
},
"repository": {
"type": "git",
"url": "git://github.com/garronej/denoify"
},
"scripts": {
"prepare": "patch-package",
"build": "tsx scripts/build.ts",
"pretest": "yarn build",
"test": "vitest",
"prettier": "prettier '**/*.{ts,tsx,json,md}'",
"format": "yarn prettier --write",
"format:check": "yarn prettier --list-different",
"link-in-demo-app": "tsx scripts/link-in-starter.ts"
},
"bin": {
"denoify": "dist/bin/main.js",
"enable_short_npm_import_path": "dist/bin/enable_short_npm_import_path.js",
"remove_deno_dist_from_gitignore": "dist/bin/remove_deno_dist_from_gitignore.js"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej",
"license": "MIT",
"keywords": [
"deno",
"transpile",
"cjs",
"CommonJs"
],
"files": [
"src/",
"dist/"
],
"devDependencies": {
"tsafe": "^1.7.5",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/node": "^20.2.3",
"@types/node-fetch": "^2.5.6",
"@types/url-join": "^4.0.0",
"husky": "^4.3.8",
"js-yaml": "^3.13.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.7.3",
"vitest": "^2.1.2",
"@vercel/ncc": "^0.38.2",
"@octokit/rest": "^18.0.0",
"@types/comment-json": "^1.1.1",
"commander": "^7.0.0",
"comment-json": "^3.0.2",
"cosmiconfig": "^7.0.1",
"evt": "2.5.7",
"get-github-default-branch-name": "^1.0.0",
"gitignore-parser": "0.0.2",
"glob": "^7.1.6",
"minimal-polyfills": "^2.2.3",
"node-fetch": "^3.3.2",
"path-depth": "^1.0.0",
"scripting-tools": "^0.19.14",
"url-join": "^4.0.1",
"chalk": "^5.3.0",
"tsx": "^4.19.1",
"chokidar": "^4.0.1",
"punycode": "^2.3.1",
"patch-package": "^8.0.0"
}
}