-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.26 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
{
"name": "es-containers",
"author": "yaxingson <[email protected]>",
"version": "0.0.6",
"description": "implementation of various data structures and algorithms in javascript",
"keywords": [
"container",
"data structure",
"list",
"set",
"map"
],
"homepage": "https://github.com/yaxingson/es-containers",
"repository": {
"type": "git",
"url": "[email protected]:yaxingson/es-containers.git"
},
"bugs": {
"url": "https://github.com/yaxingson/es-containers/issues"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default":"./dist/es-containers.js"
},
"./*": {
"types": "./dist/*/index.d.ts",
"import": "./dist/*/index.js",
"require": "./dist/*/index.cjs"
}
},
"files": [
"dist/*"
],
"scripts": {
"test": "vitest --run --dir lib/list --coverage",
"build": "rm -rf dist && node scripts/build.cjs && tsc --declaration --emitDeclarationOnly",
"lint": "eslint ./lib/**",
"coverage": "pnpm test --coverage",
"prepare": "husky",
"style:check": "prettier . --check",
"semantic-release": "semantic-release",
"release:check": "semantic-release --dry-run"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.8.2",
"@vitest/coverage-v8": "^1.6.0",
"cross-env": "^7.0.3",
"eslint": "^9.2.0",
"execa": "^9.0.2",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rollup": "^4.13.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-license": "^3.5.3",
"semantic-release": "^24.2.0",
"tinybench": "^3.0.6",
"tslib": "^2.8.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"license": "MIT"
}