-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 944 Bytes
/
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
{
"name": "stencil-todomvc",
"version": "0.1.0",
"private": true,
"author": {
"name": "Christian Köberl"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"dev": "stencil build --dev --watch --serve",
"start": "stencil build --serve",
"lint": "eslint src/**/*{.ts,.tsx}"
},
"dependencies": {
"@stencil/core": "4.22.2",
"todomvc-app-css": "2.4.3",
"todomvc-common": "1.0.5"
},
"devDependencies": {
"@stencil-community/eslint-plugin": "0.9.0",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "8.57.1",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@9"
}