-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.73 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
{
"name": "@vainjs/ore",
"version": "0.0.3",
"description": "A utility library that extends lodash with additional functionality for modern JavaScript projects.",
"keywords": [],
"repository": {
"url": "https://github.com/vainjs/ore"
},
"license": "MIT",
"author": "young",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "rimraf dist && pnpm build:types && rolldown -c",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"dev": "rolldown -wc",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"test": "jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/lodash": "^4.17.20",
"@types/node": "^22.1.0",
"@vainjs/eslint-config": "latest",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rolldown": "^0.13.2",
"ts-jest": "^29.2.3",
"typescript": "^5.9.0"
},
"peerDependencies": {
"lodash": "^4.17.21"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}