-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
77 lines (77 loc) · 2.05 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": "4.0.1",
"description": "Quickly create a new stencil component project: npm init stencil",
"repository": {
"type": "git",
"url": "https://github.com/stenciljs/create-stencil"
},
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"scripts": {
"start": "node index.js",
"build": "run-s build.*",
"build.bundle": "rollup -c",
"build.minify": "terser --compress --mangle --toplevel --output index.js -- ./dist/index.js",
"test": "vitest",
"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",
"watch": "run-p watch.*",
"watch.tsc": "tsc --watch",
"watch.bundle": "rollup -c --watch",
"watch.minify": "onchange './dist/index.js' -- npm run build.minify"
},
"engines": {
"node": ">=10.10.0",
"npm": ">=6.0.0"
},
"bin": {
"create-stencil": "index.js"
},
"devDependencies": {
"@clack/prompts": "^0.10.0",
"@ionic/prettier-config": "^4.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.5",
"@types/prompts": "^2.4.9",
"@types/yauzl": "^2.10.3",
"@vitest/coverage-v8": "^3.0.7",
"colorette": "^2.0.20",
"https-proxy-agent": "^7.0.6",
"node-fetch": "^3.3.2",
"np": "^10.2.0",
"npm-run-all2": "^7.0.2",
"onchange": "^7.1.0",
"prettier": "3.5.3",
"replace-in-file": "^8.3.0",
"rollup": "^4.34.8",
"sisteransi": "^1.0.5",
"terser": "^5.39.0",
"typescript": "~5.8.2",
"vitest": "^3.0.7",
"yauzl": "^3.2.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"
}
}