forked from nativescript-vue/nativescript-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1001 Bytes
/
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
{
"name": "nativescript-vue",
"version": "3.0.0-beta.8",
"main": "dist/index.js",
"files": [
"dist/",
"nativescript.webpack.js"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"prepack": "npm run build"
},
"dependencies": {
"@vue/compiler-sfc": "^3.3.4",
"@vue/runtime-core": "^3.3.4",
"@vue/shared": "^3.3.4",
"set-value": "^4.1.0",
"vue-loader": "^17.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@nativescript/core": "~8.5.0",
"@nativescript/webpack": "~5.0.14",
"esbuild": "^0.17.19",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"prettier": {
"useTabs": false,
"singleQuote": true
}
}