-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "module-structure-lang-vue",
"version": "1.0.3",
"description": "Vue language provider for module-structure.",
"scripts": {
"build-dev": "tsc -p .",
"build-prod": "npm run clean-js && npm run clean-dist && tsc -p tsconfig.prod.json --outDir dist",
"clean-dist": "rimraf dist/",
"clean-js": "rimraf src/**/*.js && rimraf src/**/*.js.map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ttskp/module-structure-lang-vue.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ttskp/module-structure-lang-vue/issues"
},
"homepage": "https://github.com/ttskp/module-structure-lang-vue#readme",
"extensions": {
"module-structure:language": {
"vue": "./dist/vue-dependency-provider"
}
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.3.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^5.3.0",
"@vue/component-compiler-utils": "^3.1.2",
"enhanced-resolve": "^5.8.3",
"konan": "^2.1.1",
"preconditions": "^3.0.0",
"ts-jest": "^27.0.7",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"files": [
"dist",
"conf"
]
}