-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.94 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.94 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
84
85
86
87
88
89
90
91
92
{
"name": "@tsdotnet/array-copy",
"version": "1.2.4",
"description": "A commonly used array copy utility. (arrayCopy and arrayCopyTo)",
"author": "electricessence",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types/arrayCopy.d.ts",
"import": "./dist/esm/arrayCopy.js",
"require": "./dist/cjs/arrayCopy.js"
}
},
"types": "./dist/types/arrayCopy.d.ts",
"keywords": [
"array",
"arrays",
"copy",
"copy to",
"array copy",
"array copy to"
],
"scripts": {
"clean": "rimraf dist",
"build:types": "cpy \"src/**/*.d.ts\" dist/types --parents && tsc -p tsconfig.types.json",
"build:esm": "rollup -c rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "pnpm clean && pnpm build:types && pnpm build:esm && pnpm build:cjs && pnpm typecheck:tests",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc -p tests/tsconfig.json --noEmit",
"lint": "eslint src/**/*.ts",
"docs": "rimraf docs && typedoc --options typedoc.json --readme none",
"bump": "pnpm run precommit && pnpm version patch",
"precommit": "pnpm build && pnpm test && pnpm lint && git status -s",
"preversion": "pnpm lint && pnpm test",
"postversion": "git push && git push --tags && pnpm run docs && git add -A && git commit -m \"Updated docs.\" docs && git push",
"prepublishOnly": "pnpm build && pnpm test && pnpm lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsdotnet/array-copy.git"
},
"bugs": {
"url": "https://github.com/tsdotnet/array-copy/issues"
},
"homepage": "https://github.com/tsdotnet/array-copy#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.3.3",
"@vitest/coverage-v8": "^4.0.18",
"cpy-cli": "^7.0.0",
"eslint": "^10.0.2",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@tsdotnet/array-init": "^1.2.3",
"@tsdotnet/common-interfaces": "^1.0.6",
"@tsdotnet/exceptions": "^1.2.5",
"tslib": "^2.8.1"
},
"pnpm": {
"overrides": {
"hosted-git-info@<2.8.9": ">=2.8.9",
"y18n@=4.0.0": ">=4.0.1",
"lodash@<4.17.20": ">=4.17.20",
"shell-quote@<=1.7.2": ">=1.7.3",
"lodash@<4.17.21": ">=4.17.21",
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"minimatch@<3.0.5": ">=3.0.5",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"get-func-name@<2.0.1": ">=2.0.1",
"@babel/traverse@<7.23.2": ">=7.23.2",
"braces@<3.0.3": ">=3.0.3",
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1"
},
"ignoredBuiltDependencies": [
"esbuild"
]
}
}