-
-
Notifications
You must be signed in to change notification settings - Fork 245
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "nativescript-vue",
"version": "3.0.0",
"main": "dist/index.js",
"files": [
"dist/",
"devtools.js",
"nativescript.webpack.js"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "simple-git-hooks",
"pack:template": "npm pack ./packages/template-blank",
"prepack": "npm run build && npm run pack:template"
},
"dependencies": {
"@vue/compiler-sfc": "^3.5.13",
"@vue/devtools": "^6.5.1",
"@vue/runtime-core": "^3.5.13",
"@vue/shared": "^3.5.13",
"cross-spawn": "^7.0.6",
"set-value": "^4.1.0",
"vue-loader": "^17.4.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@nativescript/core": "~8.8.6",
"@nativescript/webpack": "~5.0.22",
"esbuild": "^0.25.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install lint-staged --config=package.json",
"commit-msg": "npx --no-install commitlint --edit"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"prettier": {
"useTabs": false,
"singleQuote": true
},
"packageManager": "yarn@1.22.19+sha256.732620bac8b1690d507274f025f3c6cfdc3627a84d9642e38a07452cc00e0f2e"
}