forked from vue-vine/vue-vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "@vue-vine/compiler",
"version": "0.1.41",
"description": "Compiler for Vue Vine",
"author": "ShenQingchuan",
"license": "MIT",
"keywords": [
"Vue",
"Vine"
],
"exports": {
".": {
"dev": "./src/index.ts",
"node": "./dist/index.js",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development tsup --watch",
"build": "NODE_ENV=production tsup",
"test": "vitest",
"test:verbose": "VINE_DEV_VITEST=true vitest",
"prepublish": "pnpm run build"
},
"dependencies": {
"@babel/parser": "^7.24.0",
"@babel/types": "^7.24.0",
"@vue/compiler-dom": "^3.4.38",
"@vue/compiler-ssr": "^3.4.38",
"@vue/shared": "^3.5.13",
"estree-walker": "^2.0.2",
"hash-sum": "^2.0.0",
"line-column": "^1.0.2",
"lru-cache": "^11.0.2",
"magic-string": "^0.30.10",
"merge-source-map": "^1.1.0",
"postcss": "^8.4.29",
"postcss-selector-parser": "^6.0.13",
"prettier": "^3.3.2",
"source-map-js": "^1.0.2"
},
"devDependencies": {
"@types/hash-sum": "^1.0.0",
"@types/line-column": "^1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}