-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "@mpxjs/mpx-tsc",
"version": "1.0.5",
"description": "命令行中对Mpx文件与ts文件进行类型检查",
"main": "lib/index.js",
"scripts": {
"resetup": "npm run clean && pnpm i && npm run build",
"build": "tsc -b",
"watch": "tsc -b -w",
"test": "vitest run",
"clean": "npm run clean:node_modules && npm run clean:tsbuildinfo",
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:tsbuildinfo": "find . -name '*.tsbuildinfo' -type f -prune -exec rm -rf '{}' +",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add CHANGELOG.md"
},
"files": [
"bin",
"**/*.js",
"**/*.d.ts"
],
"keywords": [
"mpx",
"miniprogram",
"typescript",
"tsc"
],
"license": "ISC",
"author": "wangshunnn, Blackgan3",
"homepage": "https://github.com/mpx-ecology/mpx-tsc#readme",
"repository": {
"type": "git",
"url": "https://github.com/mpx-ecology/mpx-tsc.git"
},
"bugs": {
"url": "https://github.com/mpx-ecology/mpx-tsc/issues"
},
"bin": {
"mpx-tsc": "bin/mpx-tsc.js"
},
"dependencies": {
"@volar/language-core": "2.2.0-alpha.6",
"@volar/typescript": "2.2.0-alpha.6",
"@vue/compiler-dom": "^3.4.21",
"@vue/language-core": "2.0.10",
"computeds": "^0.0.1",
"minimatch": "^9.0.3",
"path-browserify": "^1.0.1",
"semver": "^7.5.4"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "latest",
"@types/path-browserify": "^1.0.2",
"conventional-changelog-cli": "^4.1.0",
"vitest": "latest"
}
}