-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 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
{
"name": "@webiny/stdlib",
"version": "0.0.0",
"type": "module",
"description": "Standard library for Webiny — platform-agnostic, Node.js, and browser utilities",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./node": {
"import": "./dist/node/index.js",
"types": "./dist/node/index.d.ts"
},
"./browser": {
"import": "./dist/browser/index.js",
"types": "./dist/browser/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@webiny/di": "^0.2.3",
"dot-prop": "^10.1.0",
"fast-glob": "^3.3.3",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"type-fest": "^5.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@octokit/rest": "^22.0.1",
"@types/node": ">=24",
"@types/semver": "^7.7.1",
"@typescript/native-preview": "^7.0.0-dev.20260511.1",
"@vitest/coverage-v8": "^4.1.6",
"adio": "^3.0.0",
"happy-dom": "^20.9.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"semver": "^7.8.0",
"vitest": "^4.1.6"
},
"scripts": {
"clean": "rm -rf dist",
"build": "node scripts/buildPackages.ts",
"pack:packages": "node scripts/packPackages.ts",
"publish:packages": "node scripts/publishPackages.ts",
"test": "vitest run --config testing/vitest.config.ts",
"test:coverage": "vitest run --coverage --config testing/vitest.config.ts",
"format": "oxfmt",
"format:fix": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"check:imports": "adio",
"typecheck": "tsgo -p config/tsconfig.check.common.json && tsgo -p config/tsconfig.check.node.json && tsgo -p config/tsconfig.check.browser.json && tsgo -p config/tsconfig.check.scripts.json"
}
}