-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 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
74
75
76
77
78
79
80
81
82
83
{
"name": "@fullstacksjs/toolbox",
"version": "2.10.0",
"license": "MIT",
"author": "ASafaeirad <frontendmonster@gmail.com>",
"description": "a zero-dependency collection of missing JavaScript utilities",
"repository": {
"type": "git",
"url": "git@github.com:fullstacksjs/toolbox.git"
},
"homepage": "https://toolbox.fullstacksjs.com",
"files": [
".husky/prepare",
".npmignore",
".npmrc",
"lib/",
"src/",
"LICENSE",
"README.md"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"scripts": {
"prebuild": "shx rm -rf lib/*",
"build": "tsup --dts-only && tsup --config tsup.browser.ts && tsup --tsconfig tsconfig.build.json && ./postbuild",
"type-check": "tsc --emitDeclarationOnly false --noEmit",
"lint": "npm run lint:ci -- --fix",
"lint:ci": "eslint . --ext .js,.ts,.tsx",
"test": "vitest --run",
"test:ci": "CI=true vitest --allowOnly",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"verify": "run-p lint type-check test",
"prepublishOnly": "pinst --disable && pkg-ok ./lib/esm && pkg-ok ./lib/cjs",
"postpublish": "pinst --enable",
"prepare": ".husky/prepare"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.2.0",
"@fullstacksjs/eslint-config": "13.8.2",
"@fullstacksjs/tsconfig": "2.0.0",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.3",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "24.9.1",
"@vitest/coverage-v8": "4.0.16",
"cspell": "9.4.0",
"eslint": "9.38.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"pkg-ok": "3.0.0",
"prettier": "3.7.4",
"semantic-release": "25.0.2",
"shx": "0.4.0",
"standard-version": "9.5.0",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.16"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@11.7.0",
"volta": {
"node": "24.12.0"
}
}