-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1009 Bytes
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
{
"name": "@intlify-devtools/shared",
"description": "shared library for intlify devtools",
"version": "0.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bugs": {
"url": "https://github.com/intlify/devtools/issues"
},
"dependencies": {
"@babel/parser": "^7.13.13",
"@vue/compiler-core": "^3.0.10",
"@vue/compiler-sfc": "^3.0.10"
},
"devDependencies": {
"@babel/types": "^7.13.14",
"@types/estree": "^0.0.47"
},
"engines": {
"node": ">= 12"
},
"files": [
"dist"
],
"homepage": "https://github.com/intlify/devtools/tree/main/packages/shared#readme",
"license": "MIT",
"main": "lib/index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/devtools.git",
"directory": "packages/shared"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf lib/*.* tsconfig.tsbuildinfo",
"watch": "tsc -b --watch"
},
"types": "lib/index.d.ts"
}