-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "create-v-kit-spa",
"version": "1.0.10",
"main": "dist/index.js",
"description": "A simple way to start your Vue-Laravel SPA projects",
"repository": "Shuashuaa/v-kit-spa",
"scripts": {
"test": "ts-node dist/index.js",
"test-dev": "ts-node src/index.ts",
"build": "tsc",
"deploy": "npm link && npm link create-v-kit-spa && npm publish --access public"
},
"bin": {
"create-v-kit-spa": "dist/index.js"
},
"keywords": [
"vue-spa",
"laravel-spa",
"vue-laravel-spa",
"spa"
],
"author": "Jovi Joshua Tania <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Shuashuaa/v-kit-spa#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.33",
"@types/cli-progress": "^3.11.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"files": [
"dist",
"lib",
"index.d.ts",
"package.json",
"@shuashuaa-v-kit.png"
]
}