-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "tyranoscript-packager",
"version": "0.3.11",
"description": "This is a CLI tool for packaging Typescript apps.",
"bin": {
"tyrano": "lib/index.js"
},
"scripts": {
"clean": "rimraf dest lib",
"watch": "tsc -w",
"build": "tsc",
"pretest": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuji44/tyranoscript-packager.git"
},
"keywords": [
"tyranoscript",
"cli",
"command"
],
"author": "fuji44",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuji44/tyranoscript-packager/issues"
},
"homepage": "https://github.com/fuji44/tyranoscript-packager#readme",
"dependencies": {
"archiver": "^7.0.1",
"commander": "^14.0.3",
"mkdirp": "^3.0.1",
"ncp": "^2.0.0",
"tar": "^7.5.12",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/jest": "^30.0.0",
"@types/ncp": "^2.0.8",
"@types/node": "^25.5.0",
"@types/tar": "^7.0.87",
"jest": "^30.3.0",
"rimraf": "^6.1.3",
"tmp": "^0.2.5",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}