-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.83 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
{
"name": "detype",
"version": "1.1.0",
"description": "Removes TypeScript type annotations but keeps the formatting",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": "detype.js",
"scripts": {
"prepack": "rimraf dist && pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"test": "pnpm run /^test:/",
"test:cq": "pnpm run /^cq:/",
"test:unit": "vitest run",
"cq:typecheck": "tsc -p tsconfig.json --noEmit",
"cq:lint": "eslint src --max-warnings 0",
"cq:prettier": "prettier --check test-files --ignore-unknown . '!pnpm-lock.yaml'",
"format": "prettier . --write --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'"
},
"files": [
"dist/**/*",
"index.d.ts"
],
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/traverse": "^7.25.9",
"@vue/compiler-dom": "^3.5.12",
"@vue/compiler-sfc": "^3.5.12",
"@vuedx/compiler-sfc": "0.7.1",
"@vuedx/template-ast-types": "0.7.1",
"fast-glob": "^3.3.2",
"prettier": "^3.3.3",
"string.prototype.replaceall": "^1.0.10"
},
"devDependencies": {
"@cyco130/eslint-config": "^5.0.0",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.6",
"@types/node": "22.8.6",
"eslint": "^9.14.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyco130/detype.git"
},
"keywords": [
"typescript",
"formatting",
"vue",
"sfc"
],
"author": "Fatih Aygün <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyco130/detype/issues"
},
"homepage": "https://github.com/cyco130/detype#readme"
}