forked from cyco130/detype
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.69 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
{
"name": "detypes",
"version": "0.8.0",
"packageManager": "[email protected]",
"description": "Removes TypeScript type annotations but keeps the formatting",
"author": "Dunqing <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Dunqing/detype#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Dunqing/detype.git"
},
"bugs": {
"url": "https://github.com/Dunqing/detype/issues"
},
"keywords": [
"typescript",
"formatting",
"vue",
"sfc"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": "detype.js",
"files": [
"README.md",
"detype.js",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepack": "rimraf dist && pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp package.json"
},
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@vue/compiler-dom": "^3.4.27",
"@vue/compiler-sfc": "^3.4.27",
"@vuedx/template-ast-types": "0.7.1",
"fast-glob": "^3.3.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.17.0",
"@babel/traverse": "^7.24.5",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.5",
"@types/node": "18.15.11",
"bumpp": "^9.4.1",
"eslint": "^9.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.7",
"tsup": "^8.0.2",
"vitest": "^1.6.0"
}
}