-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
87 lines (87 loc) · 2.41 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
78
79
80
81
82
83
84
85
86
87
{
"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"
}
},
"sideEffects": false,
"scripts": {
"commit": "git-cz",
"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": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@fullstacksjs/eslint-config": "10.11.1",
"@fullstacksjs/tsconfig": "1.1.0",
"@semantic-release/github": "10.0.5",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/node": "20.12.12",
"@vitest/coverage-v8": "1.6.0",
"commitizen": "4.3.0",
"cspell": "8.8.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"npm-run-all": "4.1.5",
"pinst": "3.0.0",
"pkg-ok": "3.0.0",
"prettier": "3.2.5",
"semantic-release": "23.1.1",
"shx": "0.3.4",
"standard-version": "9.5.0",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=16"
},
"volta": {
"node": "20.12.1",
"npm": "10.5.2"
}
}