-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.92 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"type": "module",
"name": "temporal-polyfill-lite",
"version": "0.4.2",
"description": "Lightweight Temporal polyfill",
"keywords": [
"Temporal"
],
"author": "fabon <syobon.hinata.public@gmail.com> (https://www.fabon.info/)",
"license": "MIT",
"exports": {
".": "./dist/index.js",
"./global": "./dist/global.js",
"./shim": "./dist/shim.js",
"./types/global": "./dist/types/global.js",
"./calendars-full": "./dist/calendars/index.js",
"./calendars-full/global": "./dist/calendars/global.js",
"./calendars-full/shim": "./dist/calendars/shim.js"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist"
],
"sideEffects": [
"./dist/global.js",
"./dist/calendars/global.js"
],
"homepage": "https://github.com/fabon-f/temporal-polyfill-lite#readme",
"bugs": {
"url": "https://github.com/fabon-f/temporal-polyfill-lite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabon-f/temporal-polyfill-lite.git"
},
"devDependencies": {
"@js-temporal/temporal-test262-runner": "github:js-temporal/temporal-test262-runner#main",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^1.0.0",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.2.0",
"clean-pkg-json": "^2.0.0",
"icu": "^2.2.1",
"oxfmt": "0.63.0",
"oxlint": "^1.78.0",
"rolldown": "1.2.3",
"typescript": "7.0.2",
"tzdata": "^1.0.50",
"unplugin-isolated-decl": "^0.17.0",
"vitest": "^4.1.10"
},
"scripts": {
"build": "node script/build.ts",
"test": "vitest",
"test262": "LANG=en_GB node script/test262.ts",
"typecheck": "tsc && tsc --customConditions nonIsoCalendars",
"lint": "oxfmt --check . && oxlint . --report-unused-disable-directives",
"prepack": "clean-pkg-json -r imports"
},
"imports": {
"#calendricalCalculations": {
"nonIsoCalendars": "./src/internal/calendars/all.ts",
"default": "./src/internal/calendars/basic.ts"
}
},
"packageManager": "pnpm@11.21.0"
}