-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.85 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.85 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
{
"name": "from-async",
"version": "1.1.1",
"description": "Convert async iterables, iterators, or array-like objects into arrays.",
"keywords": [],
"repository": "aicest/from-async",
"license": "MIT",
"type": "module",
"exports": {
".": {
"development": "./src/index.ts",
"types": "./src/index.ts",
"default": "./dist/index.js"
}
},
"files": [
"./dist",
"./src"
],
"scripts": {
"build": "vite build --ssr src --sourcemap",
"clean": "rimraf -g **/{dist,tsconfig.tsbuildinfo,storybook-static,coverage,test-results}",
"dev": "vite build --ssr src --watch",
"format": "eslint --fix . && prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm run build",
"test": "vitest",
"validate": "pnpm i && pnpm clean && pnpm lint && pnpm build && pnpm test run --coverage"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.5",
"@types/node": "^25.5.0",
"@vitest/coverage-istanbul": "^4.1.2",
"eslint": "^10.0.3",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"sort-package-json": "^3.6.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.1",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.31.0+sha512.e3927388bfaa8078ceb79b748ffc1e8274e84d75163e67bc22e06c0d3aed43dd153151cbf11d7f8301ff4acb98c68bdc5cadf6989532801ffafe3b3e4a63c268",
"engines": {
"node": ">=20.19"
}
}