-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.12 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@vnphanquang/green-check",
"description": "Custom element to render green check badge from the Green Web Foundation",
"version": "1.0.3",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Quang Phan",
"url": "https://github.com/vnphanquang"
},
"keywords": [
"green",
"hosting",
"greencheck",
"green web foundation",
"web component",
"custom element"
],
"homepage": "https://github.com/vnphanquang/green-check",
"repository": {
"type": "git",
"url": "git+https://github.com/vnphanquang/green-check.git"
},
"bugs": {
"url": "https://github.com/vnphanquang/green-check/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepublishOnly": "pnpm run build && publint",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish && pnpm install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint/compat": "^1.2.4",
"@types/node": "^22.7.5",
"@vnphanquang/eslint-config": "^3.0.0",
"eslint": "^9.12.0",
"eslint-plugin-jsdoc": "^50.3.2",
"prettier": "3.3.3",
"publint": "^0.2.11",
"stylelint": "^16.10.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.1",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.8"
},
"packageManager": "[email protected]",
"devEngines": {
"runtime": [
{
"name": "node",
"version": ">= 22.0.0",
"onFail": "error"
}
],
"packageManager": [
{
"name": "npm",
"version": ">=10.9.0",
"onFail": "ignore"
},
{
"name": "pnpm",
"version": ">=9.0.0",
"onFail": "error"
}
]
},
"volta": {
"node": "22.11.0"
}
}