-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "super-detype",
"version": "1.1.11",
"description": "This package converts your WHOLE Typescript project to Javascript",
"type": "module",
"homepage": "https://super-detype.superkenil.com",
"scripts": {
"test": "node ./dist/out.min.js ./src ./src-js",
"build": "esbuild ./src/app.ts --outfile=./dist/out.min.js --platform=node --minify",
"release": "npm run build && npm publish"
},
"displayName": "super-detype",
"maintainers": [
"Super-Kenil"
],
"main": "./dist/out.min.js",
"bin": {
"super-detype": "./dist/out.min.js"
},
"keywords": [
"converter",
"typescript",
"typescript-to-javascript",
"compiler"
],
"types": "./src/index.d.ts",
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"author": {
"name": "Super Kenil",
"url": "https://superkenil.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Super-Kenil/super-detype.git"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"chalk": "4.1.2",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/fs-extra": "^11.0.4",
"esbuild": "^0.24.2",
"typescript": "^5.7.3"
}
}