-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@jungvonmatt/create-wekit-app",
"version": "0.7.5",
"description": "Create WEKit app",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jungvonmatt/wekit.git"
},
"author": "Jung von Matt TECH",
"bin": {
"create-wekit-app": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "ncc build ./index.ts -w -o dist/",
"prerelease": "rimraf ./dist/",
"release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
"prepublishOnly": "npm run release"
},
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@types/async-retry": "1.4.2",
"@types/common-tags": "^1.8.1",
"@types/cross-spawn": "^6.0.2",
"@types/find-cache-dir": "^3.2.1",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/js-yaml": "^4.0.5",
"@types/micromatch": "^4.0.2",
"@types/mkdirp": "^1.0.2",
"@types/node": "^14.18.0",
"@types/prompts": "2.0.1",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.3",
"@types/tmp": "^0.2.2",
"@types/validate-npm-package-name": "3.0.0",
"@vercel/ncc": "0.25.1",
"async-retry": "1.3.1",
"bin-check": "^4.1.0",
"chalk": "2.4.2",
"commander": "2.20.0",
"common-tags": "^1.8.2",
"compare-versions": "^4.1.3",
"contentful-cli": "^1.9.36",
"contentful-management": "^7.45.7",
"cosmiconfig": "^7.0.1",
"cpy": "7.3.0",
"cross-spawn": "6.0.5",
"eslint-config-xo": "^0.40.0",
"eslint-config-xo-space": "^0.32.0",
"eslint-config-xo-typescript": "^0.50.0",
"find-cache-dir": "^3.3.2",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"got": "10.7.0",
"inquirer": "^8.2.0",
"js-yaml": "^4.1.0",
"micromatch": "^4.0.4",
"mkdirp": "^1.0.4",
"ora": "^5.4.1",
"prettier": "^2.5.1",
"prompts": "2.1.0",
"rimraf": "3.0.0",
"tar": "4.4.10",
"tempy": "^1.0.1",
"typescript": "^4.5.2",
"update-check": "1.5.4",
"validate-npm-package-name": "3.0.0"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"homepage": "https://github.com/jungvonmatt/wekit/tree/main/packages/create-wekit-app#readme",
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}