-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "source-map-unpack",
"version": "0.0.5",
"description": "Unpack 🛍 your JS source maps 🗺 to original files and folders.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Pavlo Kochubei",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/pavloko/source-map-unpack"
},
"keywords": [
"source map",
"source-map",
"unpack source maps",
"recreate source maps",
"source map to original structure"
],
"bin": {
"unpack": "./dist/index.js"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "4.1.2",
"minimist": "1.2.6",
"mkdirp": "1.0.4",
"source-map": "^0.7.4"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"start": "ts-node src/index.ts",
"format": "prettier --write src/**/*.ts"
},
"devDependencies": {
"@types/minimist": "1.2.2",
"@types/mkdirp": "1.0.2",
"@types/node": "17.0.36",
"@types/source-map": "0.5.7",
"prettier": "2.6.2",
"ts-node": "10.8.0",
"typescript": "4.7.2"
}
}