-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
70
71
72
73
{
"name": "@zemd/std-modules",
"version": "0.0.4",
"description": "Standalone ECMAScript Modules for diverse use cases",
"type": "module",
"exports": {
"./package.json": "./package.json",
"./dom": "./dist/dom.js",
"./env": "./dist/env.js",
"./errors": "./dist/errors.js",
"./invariant": "./dist/invariant.js",
"./math": "./dist/math.js",
"./object": "./dist/object.js",
"./types": "./dist/types.js",
"./promises": "./dist/promises"
},
"author": {
"name": "Dmytro Zelenetskyi",
"email": "dmytro.zelenetskyi@gmail.com",
"url": "https://zemd.dev"
},
"homepage": "https://github.com/zemd/std-modules",
"repository": {
"type": "git",
"url": "git+https://github.com/zemd/std-modules.git"
},
"bugs": {
"url": "https://github.com/zemd/std-modules/issues"
},
"keywords": [
"std",
"modules",
"utilities"
],
"files": [
"dist"
],
"scripts": {
"build": "tsdown --minify",
"test": "vitest --run",
"release": "pnpm run build && changeset publish",
"lint": "pnpm --stream run /^lint-.*/",
"lint-eslint": "eslint .",
"lint-publint": "publint",
"lint-types": "tsc --incremental --noEmit",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"install": "playwright install",
"test:browser": "vitest"
},
"license": "BlueOak-1.0.0",
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@swc/core": "^1.15.21",
"@testing-library/dom": "^10.4.0",
"@types/node": "^25.5.0",
"@vitest/browser": "^4.1.2",
"@vitest/browser-playwright": "^4.1.2",
"@zemd/eslint-ts": "^3.0.0",
"@zemd/tsconfig": "^1.6.0",
"eslint": "^10.1.0",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"only-allow": "^1.2.2",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}