-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
{
"name": "create-stencil",
"version": "3.5.6",
"description": "Quickly create a new stencil component project: npm init stencil",
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/create-stencil"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"start": "node index.js",
"build.tsc": "tsc",
"build.bundle": "rollup -c",
"minify": "terser --compress --mangle --toplevel --output index.js -- index.js",
"build": "npm run build.tsc && npm run build.bundle && npm run minify",
"build.dev": "npm run build.tsc && npm run build.bundle",
"dev": "npm run build.dev && npm start",
"test": "jest",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache \"./**/*.{ts,tsx,js,jsx}\"",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "np"
},
"engines": {
"node": ">=10.10.0",
"npm": ">=6.0.0"
},
"bin": {
"create-stencil": "index.js"
},
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/cli-spinner": "^0.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.1.7",
"@types/prompts": "^2.0.14",
"@types/yauzl": "^2.9.1",
"cli-spinner": "^0.2.10",
"colorette": "^2.0.20",
"https-proxy-agent": "^7.0.0",
"jest": "^29.0.0",
"np": "^10.0.0",
"prettier": "3.3.2",
"replace-in-file": "^7.0.0",
"rollup": "^4.0.0",
"sisteransi": "^1.0.5",
"terser": "^5.17.1",
"ts-jest": "^29.0.0",
"typescript": "~5.0.0",
"yauzl": "^3.0.0"
},
"author": "Ionic Team & William M. Riley",
"license": "MIT",
"keywords": [
"stencil",
"stenciljs",
"web components",
"create-app",
"cli",
"progress web app",
"ionic"
],
"prettier": "@ionic/prettier-config",
"volta": {
"node": "20.15.1",
"npm": "10.8.3"
}
}