forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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": "@vue-vine/language-service",
"version": "0.1.41",
"author": "ShenQingchuan",
"license": "MIT",
"homepage": "https://github.com/vue-vine/vue-vine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vue-vine/vue-vine.git"
},
"bugs": {
"url": "https://github.com/vue-vine/vue-vine/issues"
},
"sideEffects": false,
"exports": {
".": {
"dev": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./typescript-plugin": {
"dev": "./typescript-plugin/index.ts",
"import": "./dist/typescript-plugin/index.mjs",
"require": "./dist/typescript-plugin/index.js"
}
},
"main": "./dist/index.js",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts",
"./dist/typescript-plugin/index.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "NODE_ENV=development tsup --watch",
"build": "NODE_ENV=production tsup",
"prepublish": "pnpm run build"
},
"dependencies": {
"@volar/language-server": "~2.4.8",
"@volar/typescript": "~2.4.8",
"@vue-vine/compiler": "workspace:*",
"@vue/language-core": "~2.1.10",
"@vue/shared": "^3.4.31",
"muggle-string": "^0.4.1"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@types/node": "^20.11.25",
"vscode-uri": "^3.0.8"
}
}