-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.06 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": "datetime-attribute",
"version": "1.4.0",
"description": "Generate datetime attributes for the <time> HTML element, following WHATWG and ISO8601 specs.",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./src/index.js",
"types": "./types/index.d.ts"
}
},
"types": "./types/index.d.ts",
"engines": {
"node": ">=12.8"
},
"packageManager": "pnpm@8.10.5",
"scripts": {
"types": "tsc && dts-bundle-generator --silent --no-banner=true -o types/index.d.ts types-transitive/index.d.ts",
"test": "vitest run",
"test:types": "pnpm exec tsd",
"test:ui": "vitest --ui --coverage.enabled --coverage.exclude=types",
"coverage": "vitest run --coverage --coverage.exclude=types",
"watch": "vitest watch",
"build": "echo \"Nothing to build, this command is only here to please size-limit GitHub action\" && exit 0",
"size": "size-limit",
"lint": "pnpm exec eslint",
"lint-fix": "pnpm exec eslint --fix"
},
"files": [
"CHANGELOG.md",
"src/**/*.js",
"!src/**/*.test.js",
"types/index.d.ts"
],
"keywords": [
"time",
"datetime",
"attribute",
"date",
"duration",
"iso8601"
],
"homepage": "https://github.com/meduzen/datetime-attribute",
"author": "Mehdi Merah",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git+https://github.com/meduzen/datetime-attribute.git"
},
"bugs": {
"url": "https://github.com/meduzen/datetime-attribute/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.0.1",
"@vitest/ui": "^2.0.5",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.9.0",
"size-limit": "^11.1.4",
"tsd": "^0.31.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.5"
},
"pnpm": {
"overrides": {
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest"
}
}
}