-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 993 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 993 Bytes
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
{
"name": "@nervmouse/object-util",
"version": "2.0.0",
"description": "object util",
"main": "dist/object-util.js",
"types": "dist/object-util.d.ts",
"module": "./dist/object-util.mjs",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nervmouse/object-util.git"
},
"author": "Jim Chen <mouse26@gmail.com>",
"license": "APACHE 2.0",
"bugs": {
"url": "https://github.com/nervmouse/object-util/issues"
},
"homepage": "https://github.com/nervmouse/object-util#readme",
"packageManager": "pnpm@9.6.0",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"tsup": {
"entry": [
"src/object-util.ts"
],
"format": [
"cjs",
"esm"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"dts": true
}
}