-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
{
"name": "@typhonjs-utils/object",
"description": "Provides common object manipulation utility functions and TypeScript type guards.",
"version": "0.5.0",
"license": "MPL-2.0",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"type": "module",
"main": "./dist/functions.js",
"exports": {
".": {
"types": "./dist/functions.d.ts",
"import": "./dist/functions.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./package.json": "./package.json"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@typhonjs-build-test/esm-d-ts": "^0.3.0-next.11",
"@typhonjs-typedoc/typedoc-pkg": "^0.4.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"cross-env": "^10.1.0",
"klona": "^2.0.6",
"rollup": "^4.53.2",
"tslib": "^2.8.1",
"typescript" : "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18"
},
"files": [
"/dist"
],
"homepage": "https://github.com/typhonjs-node-utils/object#readme",
"keywords": [
"typhonjs",
"utils",
"object"
],
"typedocOptions": {
"dmtLinksService": {
"Discord": "https://typhonjs.io/discord/",
"GitHub": "https://github.com/typhonjs-node-utils/object",
"NPM": "https://www.npmjs.com/package/@typhonjs-utils/object"
}
},
"repository": "github:typhonjs-node-utils/object",
"bugs": "https://github.com/typhonjs-node-utils/object/issues",
"apidocs": "https://typhonjs-node-utils.github.io/object/",
"scripts": {
"build": "rollup -c",
"docs": "typedoc-pkg --api-link es",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest --coverage",
"test-ui": "vitest --ui --coverage",
"bench": "cross-env NODE_OPTIONS='--max-old-space-size=16384' vitest bench"
}
}