-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "@stencil-community/web-types-output-target",
"version": "1.0.12",
"description": "a stencil output target for generating web types",
"main": "dist/index.js",
"files": [
"dist/",
"dist/index.d.ts",
"!dist/**/*.d.ts",
"!dist/**/*.test.*"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"clean": "rm -rf dist",
"prettier": "npm run prettier.base -- --write",
"prettier.base": "prettier --cache \"./src/**/*.ts\" \".release-it.json\" \"renovate.json5\" \".oxlintrc.json\"",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prettier.dry-run": "npm run prettier.base -- --list-different",
"release": "release-it",
"release.dry-run": "release-it --dry-run",
"test": "vitest",
"test.coverage": "vitest --coverage"
},
"author": "ryan waskiewicz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stencil-community/stencil-web-types.git"
},
"devDependencies": {
"@ionic/prettier-config": "^4.0.0",
"@release-it/conventional-changelog": "^11.0.0",
"@stencil/core": "^4.13.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.0",
"oxlint": "^1.57.0",
"prettier": "3.8.3",
"release-it": "^20.0.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"prettier": "@ionic/prettier-config",
"volta": {
"node": "24.15.0",
"npm": "11.14.1"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}